With the datatables javascript plugin I want to display 10k little images in a table with pagination.
Because I load too much of them, I get errors.
I would li
I found another method here without the lazyload plugin.
Use the option
"fnRowCallback": customFnRowCallback
and then this function will replace the first column with an image tag.
function customFnRowCallback( nRow, aData, iDisplayIndex )
{
$('td:eq(0)', nRow).html( '<img class="" src="http://aaaaa/'+ aData.attribute+'" alt="" />' );
return nRow;
}