Forum Discussion
Brent Ellis
Feb 08, 2017Silver Contributor
"My Groups" list for SharePoint Homepage Web Part
So, we are about to do some major rollout of Groups to our company. While there are a million "entry points" for Groups, we simply wanted a list of Groups that a member belongs to on our Intranet Ho...
Brent Ellis
Dec 03, 2018Silver Contributor
Perhaps my mistake in a poor copy paste, it looks like
$("#listOfGroups").html(str);
should be
$("#listOfGroups").html(html);
in the above example
$("#listOfGroups").html(str);
should be
$("#listOfGroups").html(html);
in the above example
hgromek
Dec 03, 2018Copper Contributor
Brent Ellis thanks! that fixed it! One more question (please forgive me I am pretty novice at jquery) it doesn't seem to be storing all the groups it's looping through. I am only seeing the last group displayed. Any insight on how to fix this?
- hgromekDec 04, 2018Copper Contributor
Solved, needed to establish the HTML variable and change the Title Html to html+. Thanks for this work!