Grouping on 2 two levels with total
Grouping on 2 two levels with total
AlexDtTables
Posts: 6Questions: 0Answers: 0
Hi everybody,
I try to create a table with two levels of grouping and a total by column.
I have created the two levels grouping by using this code :
[code]
"fnDrawCallback": function ( oSettings ) {
if ( oSettings.aiDisplay.length == 0 )
{
return;
}
var nTrs = jQuery(' tbody tr');
var sLastGroup = "";
var sLastGroup2 = "";
var sLastGroup2 = "";
for ( var i=0 ; i
I try to create a table with two levels of grouping and a total by column.
I have created the two levels grouping by using this code :
[code]
"fnDrawCallback": function ( oSettings ) {
if ( oSettings.aiDisplay.length == 0 )
{
return;
}
var nTrs = jQuery(' tbody tr');
var sLastGroup = "";
var sLastGroup2 = "";
var sLastGroup2 = "";
for ( var i=0 ; i
This discussion has been closed.
Replies
I have fixed my problem with a for boucle and append function :)
Thank you !