Hi,
I'm not sure I'll be able to explain correctly, but let's try.
I created a RadMenu that is populated by a web service (following the examples provided). But now I was trying to use the RadAjaxManager to call a server-side code to, on the menu items click, populate another control (in this case another RadMenu playing the role of a Breadcrumb). The problem is that these menu items that are created via web service doesn't fire the server-side event. the root (which I manually added as it is static) works fine.
Basically, this is what I have on the aspx, which I think explains a bit of what I mean
Is it possible to do something like what I want to do? or the only way to do that is via client-side javascript?
Thanks,
Eduardo
I'm not sure I'll be able to explain correctly, but let's try.
I created a RadMenu that is populated by a web service (following the examples provided). But now I was trying to use the RadAjaxManager to call a server-side code to, on the menu items click, populate another control (in this case another RadMenu playing the role of a Breadcrumb). The problem is that these menu items that are created via web service doesn't fire the server-side event. the root (which I manually added as it is static) works fine.
Basically, this is what I have on the aspx, which I think explains a bit of what I mean
| <div> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| </telerik:RadScriptManager> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="rmModules"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="mnBreadCrumbs" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadMenu ID="rmModules" runat="server" |
| Skin="Outlook" EnableEmbeddedSkins="false" EnableEmbeddedBaseStylesheet="false" |
| OnClientItemClicking="onClicking" OnItemClick="rmModules_ItemClick" |
| EnableViewState="false" EnableAjaxSkinRendering="false" EnableOverlay="false"> |
| <WebServiceSettings Path="NavigationItems.asmx" Method="GetMenuCategories" UseHttpGet="false" /> |
| </telerik:RadMenu> |
| <telerik:RadMenu ID="mnBreadCrumbs" runat="server"> |
| </telerik:RadMenu> |
| </div> |
Is it possible to do something like what I want to do? or the only way to do that is via client-side javascript?
Thanks,
Eduardo