I'm using a custom UC inside a RadGrid's EditItemTemplate tag:
| <telerik:RadAjaxPanel runat="server"> |
| <asp:TextBox runat="server" ID="useridTextbox" MaxLength="3" Width="25px"></asp:TextBox> |
| <asp:ImageButton runat="server" ID="checkNameImageButton" ImageAlign="AbsMiddle" ImageUrl="~/Images/checknames.gif" /> |
| </telerik:RadAjaxPanel> |
The UC has a button (checkNameImageButton) that does a server-side lookup to verify the entry against Active Directory. I would like to have it so when the user clicks the checkNameImageButton, only the ajax panel in the UC does a callback. Currently it appears that the grid is what initiates the callback. Is it possible to have the Ajax Panel initiate the callback when it is inside a RadGrid?
Thanks in advance