There are a few features that I would really like to see added to the WebDataMenu.
Hello Rob,
Thank you for you post and feature requests. I will create these feature requests and update you with the feature request numbers by the end of the week.
Please let me know if I may be of further assistance with this matter.
Sincerely,Mike P.Developer Support EngineerInfragistics, Inc.www.infragistics.com
Mike, that is terrific! Thank you very much!
And thank you very much for not razzing me for the rookie move of posting this in the wrong forum. What was I doing in the classic controls section?
After some research, Multi-column flyouts and the ability to load on demand have been determined to be a new feature request. I have sent your feature request directly to our product management team. Our product team chooses new feature requests for development based on popular feedback from our customer base. Infragistics continues to monitor application development for all of our products, so as trends appear in requested features, we can plan accordingly.
We value your input, and our philosophy is to enhance our toolset based on customer feedback. If your feature is chosen for development, you will be notified at that time. Your reference number for this feature request is FR13562 and FR13563.
If you would like to follow up on your feature request at a later point, you may contact Developer Support management via email. Please include the reference number of your feature request in the subject and body of your email message. You can reach Developer Support management through the following email address: dsmanager@infragistics.com
Thank you for your request.
As for the abilty to add/remove menu items from the client please see the following code.
function WebDataMenu1_ItemClick(sender, eventArgs) { ///<summary> /// ///</summary> ///<param name="sender" type="Infragistics.Web.UI.WebDataMenu"></param> ///<param name="eventArgs" type="Infragistics.Web.UI.DataMenuItemCancelEventArgs"></param> var clickedItem = eventArgs.getItem(); if (clickedItem.get_key() == "RootAdd") { sender.addItem("Click to remove", clickedItem); } else if (clickedItem.get_text() == "Click to remove") { sender.removeItem(clickedItem); } }
var clickedItem = eventArgs.getItem();
if (clickedItem.get_key() == "RootAdd") { sender.addItem("Click to remove", clickedItem); } else if (clickedItem.get_text() == "Click to remove") { sender.removeItem(clickedItem); } }
Hi Mike
Just wanted to know whether the webdatamenu CSOM additem is a pure client side call or makes a trip to server for rendering .
In case it does, is it possible to batch the additem calls ?
I am using 2011.2
Thanks
Abhishek