I have the UltraWebListbar control, I think it's the same as the WebListbar but I am not 100% sure. It is part of the NetAdvantage 7.3 toolkit.
What I am trying to do with this control is bind a SharePoint menu to it. Is this possible and how can this be accomplished?
Thank you!
The Ultra prefix was dropped a few years ago, but the control is still the same. The WebListBar isn't a databindable control, so you can't bind it directly to anything. You can however, fill it with data manually. A simple foreach loop should do the trick.
-Tony
Can I bind xml into the control?
Hello,
You can`t bind XML to UltraWebListbar because it does not support DataSourceID property – so you cannot use XmlDataSource or SiteMapDataSource. XML documents have unlimited nested levels, but in UltraWebListbar we have only one root level – Groups, and one level for child items.
You can use some custom X-Path expression to extract necessary data from Xml and bind the UltraWebListBar intance to it.
Can you provide a sample of this?