server-side processing example with hidden row information not show details
server-side processing example with hidden row information not show details
Hi,
i am using http://datatables.net/release-datatables/examples/server_side/row_details.html. Data visible runs correctly with "scripts/details_col.php" but when i click open.png not open row detalis. I have just changed the code to add more columns on the visible table.
Image open.png is in file details_col.php.
[code]
/* Add the details image at the start of the display array */
$row[] = '';
[/code]
I think i am not calling function fnFormatDetails when i click this image. Version datatables is 1.8.2.
[code]
function fnFormatDetails ( nTr )
{
var aData = oTable.fnGetData( nTr );
var sOut = '';
sOut += 'Rendering engine:';
sOut += 'Link to source:Could provide a link here';
sOut += 'Extra info:And any further';
sOut += '';
return sOut;
}
[/code]
Thanks if someone knows what is wrong.
i am using http://datatables.net/release-datatables/examples/server_side/row_details.html. Data visible runs correctly with "scripts/details_col.php" but when i click open.png not open row detalis. I have just changed the code to add more columns on the visible table.
Image open.png is in file details_col.php.
[code]
/* Add the details image at the start of the display array */
$row[] = '';
[/code]
I think i am not calling function fnFormatDetails when i click this image. Version datatables is 1.8.2.
[code]
function fnFormatDetails ( nTr )
{
var aData = oTable.fnGetData( nTr );
var sOut = '';
sOut += 'Rendering engine:';
sOut += 'Link to source:Could provide a link here';
sOut += 'Extra info:And any further';
sOut += '';
return sOut;
}
[/code]
Thanks if someone knows what is wrong.
This discussion has been closed.