Hi,
Using the Iana method on this post : http://www.telerik.com/community/forums/aspnet-ajax/ajax/radpanel-when-call-a-service.aspx
I want to write something like that to ajaxify a button click.
Now, I want to do the same thing but on a RadMenuItem. I define my RadMenu like that :
How to ajaxify the click on the first, second and third RadMenuItem using the same method as above ? (please pay attention I want to use the ClickToOpen set to true)
Thank you,
Sabrina
Using the Iana method on this post : http://www.telerik.com/community/forums/aspnet-ajax/ajax/radpanel-when-call-a-service.aspx
I want to write something like that to ajaxify a button click.
| <telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="ClearBtn"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="ClearBtn" LoadingPanelID="AjaxLoadingPanel"> |
| </telerik:AjaxUpdatedControl> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxProxyManager> |
Now, I want to do the same thing but on a RadMenuItem. I define my RadMenu like that :
| <telerik:RadMenu ID="SaveBtn" ClickToOpen="true" runat="server" EnableEmbeddedSkins="false" CausesValidation="false" OnItemClick="SaveBtn_Click"> |
| <Items> |
| <telerik:RadMenuItem Text="save"> |
| <Items> |
| <telerik:RadMenuItem Text="text 1" |
| Value="value 1" /> |
| <telerik:RadMenuItem Text="text 2" |
| Value="value 2" /> |
| <telerik:RadMenuItem Text="text 3" |
| Value="value 3" /> |
| </Items> |
| </telerik:RadMenuItem> |
| </Items> |
| </telerik:RadMenu> |
How to ajaxify the click on the first, second and third RadMenuItem using the same method as above ? (please pay attention I want to use the ClickToOpen set to true)
Thank you,
Sabrina