how do you use format with with fnOpen?

how do you use format with with fnOpen?

shamufishshamufish Posts: 14Questions: 0Answers: 0
edited October 2010 in General
[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

Replies

  • allanallan Posts: 63,281Questions: 1Answers: 10,425 Site admin
    I'd suggest having a look at what Firebug says about the font-size. If there are any overrides or anything like that, then the will be noted there.

    Allan
  • shamufishshamufish Posts: 14Questions: 0Answers: 0
    Yup, sure enough the problem was a p tag from the Rails simple_format function. Solution is to style that as well.

    Cheers!
This discussion has been closed.