My question is: when dynamically creating groups and items, what is the object type for the new group or new item?
'add group to web listbaruwlMembers.Groups.Add(grp)
AND
'add item to web listbar groupuwlMembers.Group(0).item.Add(itm)
Thanks!!!! Brandy
Hello,
That is the code for adding dynamically groups and items in UltraWebListbar:
protected void Page_Load(object sender, EventArgs e)
{
int length = 10;
for (int i = 0; i < length; i++)
UltraWebListbar1.Groups.Add(string.Format("Group " + i));
for (int j = 0; j < length; j++)
UltraWebListbar1.Groups[i].Items.Add("Item " + j + " of Group " + i);
}