Chatter Popup for Task List

Same problem I was describing above. You can fix using the skuid__Social page in an iframe. Add this code to a Template component, and make sure the Template is assigned to the model for which you want to pull the record ID.

<iframe src="{{$Site&#46;Prefix}}/apex/skuid__Social?id={{{Id}}}" frameBorder=0 width="100%" height="600px"/> 

The way I did it was with a row action that calls a pop-up, and I put my template into the popup. Being called from a row action means it should contain the context of that single row’s record id.

The {{$Site.Prefix}} part is unnecessary unless you have Partner/Customer Communities set up and want it to work in there as well.