我的两个最高优先级是渐进增强和内联编辑。我发现了渐进增强(DataTables)和内联编辑(jqGrid),但不是两者兼而有之。对 jQuery UI 主题的支持会很好,但优先级较低。
更新:这是我想象的解决方案的一个示例:
<table summary="A table full of example tabular data">
<caption>My Table to Progressively Enhance</caption>
<thead>
<tr>
<th id="colA">Column A</th>
<th id="colB">Column B</th>
</tr>
</thead>
<tbody>
<tr>
<td headers="colA">foo</td>
<td headers="colB">bar</td>
</tr>
<tr>
<td headers="colA">argle</td>
<td headers="colB">bargle</td>
</tr>
</tbody>
</table>
… insert jquery datatable stuff here …
<script type="text/javascript">
progressivelyEnhanceMyTable();
</script>