0

我正在使用 jQuery 插件 DataTables 及其可编辑插件。我可以通过参数 aoColumns 将列设置为只读:

 "aoColumns": 
               [
                    null,   
                    {}, 
                    {
                        indicator: 'Saving...',
                        type: 'select',
                        submit: 'Update',
                        loadURL: 'Home/Test',
                    }
                ]

我还可以通过添加 read_only 类将每个单独的单元格设置为只读:

<td class="read_only">...</td>

只要我不指定 aoColumns (即默认情况下所有单元格都是可编辑的),上述工作就可以正常工作。是否可以在可编辑列中将某些单元格设为只读?请注意我使用 aoColumns 的原因是使用下拉框和 loadurl。

4

1 回答 1

1

我使用行回调来解决类似的问题。像这样的东西:

 "fnRowCallback": function( nRow, aData, iDisplayIndex ) {
            /* Append the read_only class to Completed rows */
            if ( aData["status"] == "Completed" )
            {
                nRow.className = "read_only";
            }
        },

http://datatables.net/usage/callbacks

于 2013-08-08T21:27:11.137 回答