Hello All,
I'm relatevely new to these suite of controls which are pretty cool.currently I'm facing a problem
I have a page that works normally however I just try to add a loading message everytime a code behind action is done, but now it is not fired :( .. I may not configure it well.
This is part of the code:
but every time I click btnNext, no code behid is executed, am I missing any configuration ?
Regards
I'm relatevely new to these suite of controls which are pretty cool.currently I'm facing a problem
I have a page that works normally however I just try to add a loading message everytime a code behind action is done, but now it is not fired :( .. I may not configure it well.
This is part of the code:
| <telerik:RadStyleSheetManager ID="rssFileUpload" runat="server"> |
| </telerik:RadStyleSheetManager> |
| <telerik:RadScriptManager ID="rsmFileUpload" runat="server"> |
| </telerik:RadScriptManager> |
| <telerik:RadAjaxManager ID="ramFileUpload" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="btnNext"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="pnUploadGeneral" LoadingPanelID="ralFileUpload" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadWindowManager ID="rwmFileUpload" |
| runat="server" |
| Skin="Web20" |
| VisibleStatusbar="false" |
| > |
| </telerik:RadWindowManager> |
| <table style="width:100%" border="0" cellspacing="0" cellpadding="0"> |
| <tr style="width:100%"> |
| <td style="width:100%"> |
| <asp:Panel ID="pnUploadGeneral" runat="server" Width="100%" /> |
| </td> |
| </tr> |
| <tr style="width:100%"> |
| <td align="right"> |
| <asp:Button ID="btnBack" runat="server" Text="Back" Width="100px" |
| onclick="btnBack_Click" /> |
| <asp:Button ID="btnNext" runat="server" Text="Next" |
| onclick="btnSubmit_Click" Width="100px" CausesValidation="true"/> |
| <asp:Button ID="btnCancel" runat="server" Text="Cancel" Width="100px" /> |
| </td> |
| </tr> |
| </table> |
| <telerik:RadAjaxLoadingPanel ID="ralFileUpload" runat="server" Height="75px" Width="75px"> |
| Loading |
| </telerik:RadAjaxLoadingPanel> |
but every time I click btnNext, no code behid is executed, am I missing any configuration ?
Regards