jquery - Is it possbile to group td tags in a fieldset -
i have html table , want group <td>
fieldset. ex in row there 16 columns, want group 8 1 fieldset (which has check box select these 8 cells) , group other 8 fieldset (same checkbox can allow second set of td tags selected)
each row must have arrangement. using asp.net mvc, razor, html5 etc. suggestions on how achieve this?
<tr>
elements can contain <td>
s, <th>
s , elements aren't rendered themselves(script
,template
).
here can read html5 specification <tr>
element, states content of these elements can ....
zero or more td, th, , script-supporting elements
and of case, can use classes
, name
attributes group checkboxes
, use js
handle checking/unchecking, , leave table structure alone.
Comments
Post a Comment