I have added a radgrid, textbox and a button as follows:
this._UpdatePanel.ContentTemplateContainer.Controls.Add(RadGrid1);
this._UpdatePanel.ContentTemplateContainer.Controls.Add(TextBox1);
this._UpdatePanel.ContentTemplateContainer.Controls.Add(Buton1);
The radgrid has a checkbox column which I have added through a GridTemplateColumn. On click of the button I want to know the rows that are selected. How can I do this on server side? Also is it possible to find the selected checkboxes client side?
this._UpdatePanel.ContentTemplateContainer.Controls.Add(RadGrid1);
this._UpdatePanel.ContentTemplateContainer.Controls.Add(TextBox1);
this._UpdatePanel.ContentTemplateContainer.Controls.Add(Buton1);
The radgrid has a checkbox column which I have added through a GridTemplateColumn. On click of the button I want to know the rows that are selected. How can I do this on server side? Also is it possible to find the selected checkboxes client side?