@@ -87,7 +87,13 @@ <h2>table-sort-js</h2>
8787 < td > table-arrows</ td >
8888 < td >
8989 Adds up or down arrows to indicate whether column is sorted in
90- aescending or descending order.
90+ ascending or descending order.
91+ </ td >
92+ </ tr >
93+ < tr >
94+ < td > remember-sort</ td >
95+ < td >
96+ If clicking on different columns remembers sort of the original column.
9197 </ td >
9298 </ tr >
9399 </ table >
@@ -99,7 +105,7 @@ <h2>table-sort-js</h2>
99105 >
100106 < thead >
101107 < tr >
102- < th > <th class=""> </ th >
108+ < th > <th class=""> </ th >
103109 < th > Description</ th >
104110 </ tr >
105111 </ thead >
@@ -113,7 +119,7 @@ <h2>table-sort-js</h2>
113119 < tr >
114120 < td > file-size</ td >
115121 < td >
116- Supports sorting files sizes from bytes to Tebibytes (B -> TiB).
122+ Supports sorting files sizes from bytes to Tebibytes (B -> TiB).
117123 Can be Metric prefix (e.g 10KB), or Binary prefix(e.g 25KiB) and
118124 can contain a space or no space between number and unit type
119125 (e.g 25KB or 25 KB). It converts units into numbers (bytes) does
@@ -143,6 +149,12 @@ <h2>table-sort-js</h2>
143149 not supported by table-sort-js.
144150 </ td >
145151 </ tr >
152+ < tr >
153+ < td > disable-sort</ td >
154+ < td >
155+ Disallow sorting the table by this specific column.
156+ </ td >
157+ </ tr >
146158 </ table >
147159 < br >
148160 < h3 > Example using tags:</ h3 >
@@ -156,23 +168,27 @@ <h3>Example using tags:</h3>
156168 <th class="data-sort">data</th>
157169 <th class="file-size">file sizes</th>
158170 <th class="order-by-desc">birth date</th>
171+ <th class="disable-sort">unsortable</th>
159172 </tr>
160173 </thead>
161174 <tbody>
162175 <tr>
163176 <td data-sort="2">sort</td>
164177 <td>10KiB</td>
165178 <td>1706/1/17</td>
179+ <td>1</td>
166180 </tr>
167181 <tr>
168182 <td data-sort="3">js</td>
169183 <td>1MB</td>
170184 <td>1835/11/25</td>
185+ <td>2</td>
171186 </tr>
172187 <tr>
173188 <td data-sort="1">table</td>
174189 <td>1TB</td>
175190 <td>1835/11/30</td>
191+ <td>3</td>
176192 </tr>
177193 </tbody>
178194</table>
@@ -184,23 +200,27 @@ <h3>Example using tags:</h3>
184200 < th class ="data-sort "> data</ th >
185201 < th class ="file-size "> file sizes</ th >
186202 < th class ="order-by-desc "> birth date</ th >
203+ < th class ="disable-sort "> unsortable</ th >
187204 </ tr >
188205 </ thead >
189206 < tbody >
190207 < tr >
191208 < td data-sort ="2 "> sort</ td >
192209 < td > 10KiB</ td >
193210 < td > 1706/1/17</ td >
211+ < td > 1</ td >
194212 </ tr >
195213 < tr >
196214 < td data-sort ="3 "> js</ td >
197215 < td > 1 MB</ td >
198216 < td > 1835/11/25</ td >
217+ < td > 2</ td >
199218 </ tr >
200219 < tr >
201220 < td data-sort ="1 "> table</ td >
202221 < td > 1TB</ td >
203222 < td > 1835/11/30</ td >
223+ < td > 3</ td >
204224 </ tr >
205225 </ tbody >
206226</ table >
0 commit comments