views:

1451

answers:

1

I have a checkbox (you can see below) nested in detailed grid. How can I find it on updating click and check if checked or not? I'm using DevExpress GridView

<dxwgv:GridViewDataCheckColumn Visible="false" VisibleIndex="14">
<EditFormSettings Visible="True" />
        <EditItemTemplate>
         <dxe:ASPxCheckBox ID="ASPxCheckBox1" Text="" runat="server">                                                     </dxe:ASPxCheckBox>
        </EditItemTemplate>                                                                                  </dxwgv:GridViewDataCheckColumn>
A: 

Use the built-in Selection feature of the ASPxGridView. It has events and methods to find the selected rows. Take a look at this sample:

http://demos.devexpress.com/ASPxGridViewDemos/Selection/Selection.aspx

Mehul