how do you use format with with fnOpen?
how do you use format with with fnOpen?
[code]oTable.fnOpen( nTr, fnFormatDetails(nTr), 'details' );[/code]
fnFormatDetails returns the results of
[code] var aPos = $('#tasks').dataTable().fnGetPosition(theTR);
var aData = $('#tasks').dataTable().fnGetData(theTR);
var sOut = '';
var sOut = sOut + aData[14];
var sOut = sOut + '';
return sOut;[/code]
It works... but the font size is never affected not matter the value used.
Cheers
fnFormatDetails returns the results of
[code] var aPos = $('#tasks').dataTable().fnGetPosition(theTR);
var aData = $('#tasks').dataTable().fnGetData(theTR);
var sOut = '';
var sOut = sOut + aData[14];
var sOut = sOut + '';
return sOut;[/code]
It works... but the font size is never affected not matter the value used.
Cheers
This discussion has been closed.
Replies
Allan
Cheers!