My app uses the WebMenu to allow the user to select select options through a WebMenu and then press the 'Go' button to activate the query. Each of the selections sets the Checked property of the Menu Item. The 'Go' button activates the query.
I am successfully placing a button as the last item in the menu through the following code:
itm =
New Infragistics.WebUI.UltraWebNavigator.Itemitm.Text ="<center><input type=""button"" value=""GO!"" onclick=""uwmThemeOptions_Go()""/></center>"itm.Tag = -2mnuThemeSelection.Items.Add(itm)
However, the onclick event is never happening! I check for a Tag of -2 Menu_Checked event and make my server call based upon that. However, I would like to add additional buttons, i.e., select all, deselect all, etc.
Is there a way to get the Button event to occur, or a better way of this???