简体   繁体   中英

asp.net allow to select only one checkbox at a time in row inside Gridview

In my Project am using Checkbox which is generated on run time now i want that users select only one checkbox at a time in Row here is My Gridview

<cc1:Grid ID="GrdWorkingCompany" runat="server" OnRowDataBound="GrdWorkingCompany_RowDataBound" EnableTypeValidation="true" CallbackMode="true" Serialize="true" ShowFooter="false" AutoGenerateColumns="false" AllowAddingRecords="true" AllowSorting="false"
Width="100%" FolderStyle="~/Styles/Grid/style_12" PageSize="18">
  <Columns>
    <cc1:Column ID="Sr_No" ReadOnly="true" DataField="SrNo" HeaderText="Sr.No." Width="50px">
    </cc1:Column>
    <cc1:Column ID="Points" ReadOnly="true" DataField="Points" HeaderText="Points" runat="server" Width="300px">
    </cc1:Column>
    <cc1:Column ID="chkPoor" ReadOnly="true" DataField="Rating1" HeaderText="Poor" Width="110px" TemplateId="tpltPoor">
    </cc1:Column>
    <cc1:Column ID="chkSatisfactory" DataField="Rating2" HeaderText="Satisfactory" ReadOnly="true" Width="110px" TemplateId="tpltSatisfactory">
    </cc1:Column>
    <cc1:Column ID="chkGood" ReadOnly="true" HeaderText="Good" DataField="Rating3" Width="110px" TemplateId="tpltGood">
    </cc1:Column>
    <cc1:Column ID="chkExcellent" HeaderText="Excellent" DataField="Rating4" Width="110px" ReadOnly="true" TemplateId="tpltEx1">
    </cc1:Column>
  </Columns>
  <TemplateSettings GroupHeaderTemplateId="GroupTemplate" />
  <Templates>
    <cc1:GridTemplate runat="server" ID="GridTemplate2">
      <Template>
        <%# Container.Column.HeaderText %>
          : <i>
                                                        <%# Container.Value %></i> (
          <%# Container.Group.PageRecordsCount %>
            <%# Container.Group.PageRecordsCount>1 ? "records" : "record" %>)
      </Template>
    </cc1:GridTemplate>
  </Templates>
  <Templates>
    <cc1:GridTemplate ID="tpltPoor">
      <Template>
        <asp:CheckBox runat="server" Checked='<%# Container.DataItem["Poor"].ToString() == "1" ? true : false %>' value="testing" CssClass="chkclass" onclick="AppoveCheckA(this)" ID="ChkID" ToolTip="<%# Container.Value %>" />
      </Template>
    </cc1:GridTemplate>
    <cc1:GridTemplate ID="tpltSatisfactory">
      <Template>
        <asp:CheckBox runat="server" Checked='<%# Container.DataItem["Satisfactory"].ToString() == "1" ? true : false %>' value="testing" CssClass="chkclass" onclick="AppoveCheckA(this)" ID="ChkID" ToolTip="<%# Container.Value %>" />
      </Template>
    </cc1:GridTemplate>
    <cc1:GridTemplate ID="tpltGood">
      <Template>
        <asp:CheckBox runat="server" Checked='<%# Container.DataItem["Good"].ToString() == "1" ? true : false %>' value="testing" CssClass="chkclass" onclick="AppoveCheckA(this)" ID="ChkID" ToolTip="<%# Container.Value %>" />
      </Template>
    </cc1:GridTemplate>
    <cc1:GridTemplate ID="tpltEx1">
      <Template>
        <asp:CheckBox runat="server" Checked='<%# Container.DataItem["Excellent"].ToString() == "1" ? true : false %>' value="testing" CssClass="chkclass" onclick="AppoveCheckA(this)" ID="ChkID" ToolTip="<%# Container.Value %>" />
      </Template>
    </cc1:GridTemplate>
  </Templates>
</cc1:Grid>

am trying some code but that is not working

my Javacsript Code

<script type="text/javascript">
    $('input.chk').on('change', function () {
        $('input.chk').not(this).prop('checked', false);
    });
</script>

Please Give the any suggestion. Thanks

Your selector is wrong. None of your elements have a class of chk . It should be chkClass :

 $('input.chkClass').on('change', function () { $('input.chkClass').not(this).prop('checked', false); }); 
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <input type="checkbox" class="chkClass"> <input type="checkbox" class="chkClass"> <input type="checkbox" class="chkClass"> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM