Hi,
I have this code snip of what my signiture looks like .....
I am trying to figure out how to keep the loading panel from running when i just click on the menu. I thought that I could just cancel the flow in the click_event itself , like e.Cancel ?
Here is my code for the loading panel .....
thanks for any advice ...
I have this code snip of what my signiture looks like .....
| protected void RadMenu1_OnItemClick(object sender, RadMenuEventArgs e) |
| { |
| RadMenuItem ItemClicked = e.Item; |
| string mText = ItemClicked.Text.ToString(); |
I am trying to figure out how to keep the loading panel from running when i just click on the menu. I thought that I could just cancel the flow in the click_event itself , like e.Cancel ?
Here is my code for the loading panel .....
| <telerik:RadAjaxManagerProxy ID="RadAjaxManageriq1" runat="server" > |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="equipmentGrid"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="equipmentGrid" |
| LoadingPanelID="RadAjaxLoadingPanel1" /> |
| <telerik:AjaxUpdatedControl ControlID="RadToolTipGeneralHelp" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManagerProxy> |
| <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Transparency="5"> |
| <table style="width: 100%; height: 100%;"> |
| <tr style="height: 100%"> |
| <td align="center" valign="middle" style="width: 100%"> |
| <asp:Image ID="Image2" ImageUrl="~/mybodyscience/iqimages/Loading_Images/loading3.gif" |
| BorderWidth="0px" Height="45px" Width="145px" AlternateText="Processing Data ...." |
| runat="server"></asp:Image> |
| </td> |
| </tr> |
| </table> |
| </telerik:RadAjaxLoadingPanel> |