1

我的两个最高优先级是渐进增强和内联编辑。我发现了渐进增强(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>
4

3 回答 3

5

我认为jqGrid将非常适合。

更新:

您可以使用这样的代码将您的表格转换为 javascript 对象

var $table = $('table'); // select your table
var data = []; // instantiate the data array
$('tr', $table).each(function(i, item){ // loop through the table rows
    obj = {} // create the object to append to the data array
    obj.name = $('td:eq(0)',$(this)).text().trim(); 
    obj.desc = $('td:eq(1)',$(this)).text().trim();
    data += obj; // add the object to the array
});

然后像在加载数组数据示例中一样添加它

for(var i=0;i<=data.length;i++) $("#datagrid").addRowData(i+1,data[i]); 
于 2009-07-24T11:51:12.360 回答
2

使用最新版本的 jqGrid,我们现在得到tableToGrid了,它很好地解决了 grid-from-markup 问题。

于 2009-08-10T22:57:49.440 回答
1

There is a plugin to datatables called jquery-datatables-editable which adds inline editing.

于 2011-07-22T08:15:26.837 回答