I guess another option would be to create a mixin similar to column filter
and use something like this. 

/* Formating function for row details */
function fnFormatDetails ( oTable, nTr )
{
    var aData = oTable.fnGetData( nTr );
    var sOut = '
';
    sOut += '
Rendering engine:       '+aData[1]+' '+aData[4]+'';
    sOut += '
Link to source: Could provide a link here';
    sOut += '
Extra info:     And any further details here (images etc)';
    sOut += '
';
     
    return sOut;
}
 



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Tapestry-Jquery-datatable-detail-row-tp5719938p5719940.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to