I want to remove the row from the grid how to remove?
In my grid content the 4 column last column contains the Remove button column on each row. when i click that button i want to remove that row ...
<telerik:GridBoundColumn Aggregate="Sum" DataField="EstTrials" DataType="System.Int32"
FooterText="Total : " HeaderText="Trials" SortExpression="EstTrials" UniqueName="Trials :">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn Aggregate="Sum" DataField="EstCost" DataFormatString="{0:c}" FooterText = "Total Sum"
DataType="System.Decimal" HeaderText="Cost" SortExpression="EstCost" UniqueName="Cost :">
</telerik:GridBoundColumn>
<telerik:GridButtonColumn ButtonType="ImageButton" HeaderText="Remove" ImageUrl="images/Delete.gif">
</telerik:GridButtonColumn>
How to remove on clicking image button ? using above code /
In my grid content the 4 column last column contains the Remove button column on each row. when i click that button i want to remove that row ...
<telerik:GridBoundColumn Aggregate="Sum" DataField="EstTrials" DataType="System.Int32"
FooterText="Total : " HeaderText="Trials" SortExpression="EstTrials" UniqueName="Trials :">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn Aggregate="Sum" DataField="EstCost" DataFormatString="{0:c}" FooterText = "Total Sum"
DataType="System.Decimal" HeaderText="Cost" SortExpression="EstCost" UniqueName="Cost :">
</telerik:GridBoundColumn>
<telerik:GridButtonColumn ButtonType="ImageButton" HeaderText="Remove" ImageUrl="images/Delete.gif">
</telerik:GridButtonColumn>
How to remove on clicking image button ? using above code /
