Good Day,
Please note that I found that one can retrieve/get the explorer bar items as per the below example;
var explorerBar = $find('<%= WebExplorerBar1.ClientID %>');var groupCollection = explorerBar.getExplorerBarItems();var group = groupCollection.getItem(0);
'<%= WebExplorerBar1.ClientID %>'
var
Is it possible to add/set these items on the client side from a group and item perspective?
Regards,
Nathan
Hello Nathan,
You can set properties of the ExplorerBarItem - modify text, value and state with: .set_value(), set_text() and so on.
The explorer bar client items collection is mostly read-only and is currently tied to the server-side for creating the items. You can browse the full client API here:
http://help.infragistics.com/Doc/ASPNET/2015.1/?page=WebExplorerBar~Infragistics.Web.UI_namespace.html
Perhaps an alternative solution would be an update panel for the explorer bar if you want to add and remove items?
Let me know if I can help with that or if you have other questions on this matter.
Damyan Petev
Associate Software Developer
Infragistics, Inc.
Hello Damyan,
A client side solution would be best, do you have an alternative control that would do the trick in igniteUI or are you busy working on something?
Can you set the visibility and all other public properties of the explorerbarItem on the client side and if you can could you please provide a quick example?
Thank you.