我需要从recordId设置默认页面。 看了之后:https://datatables.net/reference/option/rowId 我在桌子上设置了rowsIds:
$('#logosTable').DataTable(
{
serverSide: true,
processing: true,
searching: true,
autoWidth: true,
responsive: true,
dom: 'rtip',
ajax: {
url: '/Administracion/App/ObtenerListadoLogos',
type: "POST",
data:
function (d) {
d.DefaultLogo = $("#IdLogo").val()
}
},
rowId: 'Id',
columns: [
{ data: 'Id' },
{
data: 'Logo',
searchable: false,
orderable: false,
render: function (data, type, row) {
return '<img src="/DataBackend/ThumbnailsGallery/1/' + data + '" style="width:50px" />';
}
},
{
data: 'acciones',
searchable: false,
orderable: false,
render: function (data, type, row) {
return '<a href="#" onclick="seleccionarLogo(' + row.Id + ', \'' + row.Fichero + '\')"><i class="fa fa-check"></i> Seleccionar </a>';
}
}
]
});
如何从记录ID中设置默认初始化页面?
我试过这个:https://datatables.net/plug-ins/api/fnDisplayRow 如果在1.10上,它似乎已不再可用。 我已经看过了:https://datatables.net/reference/api/ 但似乎这个功能(和fngetNodes)已经消失了。
答案 0 :(得分:1)
fnDisplayRow
是一个插件,您需要与主DataTables库分开包含:
https://cdn.datatables.net/plug-ins/1.10.13/api/fnDisplayRow.js
fnGetNodes()
documentation page上有一个使用fnDisplayRow
for 1.10的示例:
// Display the nth row in the table
var table = $('#example').dataTable();
table.fnDisplayRow( table.fnGetNodes()[n] );