Hi,
I have a grid, in that I have 3 GridBound Columns and 2 Grid Template columns (Dropdowns) and one other GridTemplateColumn (radButton).
On Click on this button, I want to collect the data from the Gridbound column, Grid Template column and then do some operation.
How can I do this?
Thanks and Regards,
Deepika Karanth
I have a grid, in that I have 3 GridBound Columns and 2 Grid Template columns (Dropdowns) and one other GridTemplateColumn (radButton).
On Click on this button, I want to collect the data from the Gridbound column, Grid Template column and then do some operation.
How can I do this?
<
telerik:GridTemplateColumn HeaderText="Action" ColumnEditorID="clmEd150px">
<HeaderStyle Width="20%" />
<ItemStyle HorizontalAlign="Left"></ItemStyle>
<ItemTemplate>
<telerik:RadButton ID="rdBtnDoSomeOp" runat="server" ButtonType="StandardButton" Text="Do Some Operation" Skin="Office2010Black" OnClick="rdBtnDoSomeOp_Click">
</telerik:RadButton>
</ItemTemplate>
</telerik:GridTemplateColumn>
protected
void rdBtnDoSomeOp_Click(object sender, EventArgs e)
{
}Thanks and Regards,
Deepika Karanth