zeitlin / jquery-datatables-row-grouping

Automatically exported from code.google.com/p/jquery-datatables-row-grouping
0 stars 0 forks source link

uncaught typeerror cannot read property '_adata' of undefined datatables #72

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. when i try to reinitialize the table with row group plugin.
2. i got this error in jquery.dataTable.js line no 774
3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?
dataTable -- v1.9.4
row grouping --1.2.9

Please provide any additional information below.

$('#pipeline').dataTable({

 "sDom" : "<'row-fluid'r>t<'row-fluid'<'span6'i><'span6'p>>",
 "sPaginationType" : "bootstrap",
 "iDisplayLength" : 5,
 "bRetrieve" : true,
 "bDestroy" : true,
 "bPaginate" : true,
 "bInfo" : false,
 "bSort" : false,
 "oLanguage" : {
 "sLengthMenu" : "_MENU_ records per page",
 "sEmptyTable" : "There are no tasks in progress",
 "oPaginate" : {
 "sPrevious" : "Prev",
 "sNext" : "Next"
 }
 },

 "aoColumnDefs" : [{
 'bSortable' : false,
 'aTargets' : [0],

 }]
 }).rowGrouping({

 iGroupingColumnIndex : 1,
 iGroupingOrderByColumnIndex : 0,
 bHideGroupingColumn : "true",
 bHideGroupingOrderByColumn : "true",

 });

above is my code.

Original issue reported on code.google.com by karthick...@gmail.com on 3 Jan 2014 at 4:45