UI で jQuery テーブルソーターを使用しています。2 行のヘッダーを持つテーブルがあるシナリオがあります。メインヘッダーとサブヘッダー。サブヘッダーにソートを追加したい。どうやってやるの。
これは私のコードがどのように見えるか、
<table class="grid" id="gr1" cellspacing="0" width="100%" border="1">
<tr bgcolor="#FF0000"><th class="NOBORDER" colspan="1"> </th>
<th class="NOBORDER" colspan="3">A</th>
<th class="NOBORDER" colspan="3">B</th>
<th class="NOBORDER" colspan="3">C</th>
<th class="NOBORDER" colspan="3">D</th>
<th class="NOBORDER" colspan="3">E</th>
<th class="NOBORDER" colspan="3">F</th>
</tr>
<tr>
<th>Group</th>
<th>A1</th>
<th>A2</th>
<th>A3</th>
<th>B1</th>
<th>B2</th>
<th>B3</th>
<th>C1</th>
<th>C2</th>
<th>C3</th>
<th>D1</th>
<th>D2</th>
<th>D3</th>
<th>E1</th>
<th>E2</th>
<th>E3</th>
<th>F1</th>
<th>F2</th>
<th>F3</th>
</tr>
このテーブルから、2 行目のグループ列を並べ替えたいと思います。どうやってやるの?