Hi,
i want to change a text of a particular item when i click on a button. can someone tell me how to go abt it? i am new to infragisctics. Please it's urgent..
Thanks
JollyGuy
Using the WebMenu CSOM
You would first need to get the menu object
var menu = igmenu_getMenuById('yourIdHere')
The menu object has a getItems() method
If your menu you want to change is a sub menu off the main menu,you would first need to find the parent and then call .getItems off that object to get the child menu options.
When you get to your menu item, you can call a .setText off it.