Link to home
Start Free TrialLog in
Avatar of tatchis1
tatchis1

asked on

can a value from a Grid(Telerik) be passed via a checkbox that part of the Grid

can a value from a Grid(Telerik) be passed via a checkbox that part of the Grid. I would like to passed the value from REF_NUMBER column to the OnCheckedChanged="OnChecked"  of the Checkbox.

 <rad:GridBoundColumn  DataField="REF_NUMBER" HeaderText="REF NUMBER"
            SortExpression="REF_NUMBER" UniqueName="REF_NUMBER">
            </rad:GridBoundColumn>

            <rad:GridTemplateColumn HeaderText="RESOLVED"
            SortExpression="RESOLVED" UniqueName="RESOLVED">
                 
              <ItemTemplate>
                <asp:CheckBox ID="CheckBox1" runat="server"  
                  OnCheckedChanged="OnChecked"  AutoPostBack="True"  />
       
   
              </ItemTemplate>
ASKER CERTIFIED SOLUTION
Avatar of Mrunal
Mrunal
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial