Hi
I have a grid which contains a link button inside a template column
The link button is given a command argument in the item data bound event
I have tried to set up the grid so that is triggers an ajax postback when the link button is clicked. However clicking the link button triggers a full postback. What am i doing wrong?
I have a grid which contains a link button inside a template column
| <telerik:GridTemplateColumn HeaderText="Location"> |
| <ItemTemplate> |
| <asp:LinkButton runat="server" ID="lnkAddress"></asp:LinkButton> |
| </ItemTemplate> |
| <ItemStyle Width="300px" /> |
| </telerik:GridTemplateColumn> |
The link button is given a command argument in the item data bound event
I have tried to set up the grid so that is triggers an ajax postback when the link button is clicked. However clicking the link button triggers a full postback. What am i doing wrong?
| <telerik:AjaxSetting AjaxControlID="gridPolls"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="lblMapStatus" /> |
| <telerik:AjaxUpdatedControl ControlID="Map1" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |