Is there a way to simulate a click in UltraWebToolbar ?
I need to do this on code behind. The idea is like what you do to a server control where you can do.... Control.Focus()
Thanks
Hi,
I'm not sure if this is what you are trying to do but in our application (maybe someone else might) we sometimes simulate a click on the toolbar. If the user clicks the delete key for example we post back the page to do the delete.
To do this we use the following syntax.
__doPostBack("yourtoolbarID", "yourtoolbarID_item_0:UP") //0 indicates the button that is clicked.
and then handle the event in the onButtonClicked event in your serverside code.
I hope that helps.
Amy
in my experience, Infragistics support do not always answer emails.
crawler486 said:new forum look, same old ways. still no one is answering questions
Please remember that these forums area a peer-to-peer resource to share issues and ideas with other Infragistics users. If you require official support from Infragistics, please submit a support incident to Infragistics Developer Support from this page of our website.
Try looking at the Toolbars OnButtonClicked method.
http://help.infragistics.com/Help/NetAdvantage/NET/2007.3/CLR2.0/html/Infragistics2.WebUI.UltraWebToolbar.v7.3~Infragistics.WebUI.UltraWebToolbar.UltraWebToolbar~OnButtonClicked.html
Devin