I have jQuery slideToggle build in my design view, where I need to add my c# data.
The jQuery slideToggle view should be as below :
Group Name 1
Person Name 1
Person Name 2
Group Name 2
Person Name 1
Person Name 2
And I'm getting my data as below,
myList[0].GroupName = "Group1"
myList[0].PersonName = "Person1"
myList[1].GroupName = "Group1"
myList[1].PersonName = "Person2"
myList[3].GroupName = "Group2"
myList[3].PersonName = "Person1"
myList[4].GroupName = "Group2"
myList[4].PersonName = "Person2"
How will I get my data into my jQuery slideToggel? I'm confused??