jquery Programming Glossary: groupname
how to make user select only one check box in a checkboxlist http://stackoverflow.com/questions/1818102/how-to-make-user-select-only-one-check-box-in-a-checkboxlist to behave like radio buttons. You simply need to add a groupname attribute to your checkbox tag. HTML legend Group 1 radio button.. Group 1 radio button behavior legend input type checkbox groupname group1 value 1 Checkbox 1 br input type checkbox groupname group1.. groupname group1 value 1 Checkbox 1 br input type checkbox groupname group1 value 2 Checkbox 2 br input type checkbox groupname group1..
how to make user select only one check box in a checkboxlist http://stackoverflow.com/questions/1818102/how-to-make-user-select-only-one-check-box-in-a-checkboxlist here is a little snipped of jquery that will cause checkboxes to behave like radio buttons. You simply need to add a groupname attribute to your checkbox tag. HTML legend Group 1 radio button behavior legend input type checkbox groupname group1 value.. add a groupname attribute to your checkbox tag. HTML legend Group 1 radio button behavior legend input type checkbox groupname group1 value 1 Checkbox 1 br input type checkbox groupname group1 value 2 Checkbox 2 br input type checkbox groupname group1.. Group 1 radio button behavior legend input type checkbox groupname group1 value 1 Checkbox 1 br input type checkbox groupname group1 value 2 Checkbox 2 br input type checkbox groupname group1 value 3 Checkbox 3 br input type checkbox groupname group1..
|