I have a RadToolTip that is invoked via client-side event of a RadToolbar. The RadToolTip comes up just fine, and is modal. It contains a textbox and button:
When the btnDoRecall is pressed, my handled server-side code is not firing. Any clue why this is happening?
| <telerik:RadToolTip ID="rttRecall" runat="server" Modal="true" HideEvent="ManualClose" ShowEvent="onClick" Title="Recall" |
| Position="Center" RelativeTo="BrowserWindow" Width="300px" Height="220px" ManualClose="true" HideEvent="FromCode"> |
| <telerik:RadAjaxPanel ID="rapRecall" runat="server"> |
| <telerik:RadDock runat="server" ID="rdockRecall" Width="100%" Height="100%" Title="Recall" |
| DefaultCommands="none" DockHandle="TitleBar" EnableDrag="false" DockMode="docked"> |
| <ContentTemplate> |
| <div style="text-align: center; padding: 5px;"> |
| <asp:Label ID="lblCommentText" runat="server" AssociatedControlID="txtRecallReason" Text="Enter comment text for recalled step(s):"></asp:Label> |
| |
| <asp:TextBox ID="txtRecallReason" runat="server" Height="125px" TextMode="MultiLine" |
| Width="269px" MaxLength="1949"></asp:TextBox> |
| <br /> |
| <asp:Button ID="btnDoRecall" runat="server" CausesValidation="true" |
| Text="OK" Width="72px" /> |
| <asp:Button ID="btnCancelRecall" OnClientClick="CloseActiveToolTip();" runat="server" |
| Text="Cancel" Width="72px" /><br /> |
| <asp:RequiredFieldValidator ID="rfvtxtRecallReason" ControlToValidate="txtRecallReason" Width="100%" runat="server" ErrorMessage="*" Text="Recall reason is required."></asp:RequiredFieldValidator> |
| </div> |
| </ContentTemplate> |
| </telerik:RadDock> |
| </telerik:RadAjaxPanel> |
| </telerik:RadToolTip> |
When the btnDoRecall is pressed, my handled server-side code is not firing. Any clue why this is happening?