我的兩個最高優先級是漸進增強和內聯編輯。我發現了漸進式增強功能(DataTables)和內嵌編輯(jqGrid),但不是兩種。支持jQuery UI主題會很好,但優先級較低。什麼是最接近YUI的DataTable的jQuery近似?
更新:這就是我想象中的解決方案將類似於的例子:
<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>
如何從充滿數據的`table`中創建一個jqGrid? – 2009-07-24 12:18:39