Top Prides do not support fixed columns right now.
To achieve this, a fixed jQuery column was used. Link: http://datatables.net/extras/fixedcolumns/
Example:
var oTable2 = $(primfacesDataTableId).find('table').dataTable({
"sScrollX" : "100%",
"sScrollY" : "180",
"bAutoWidth" : false,
"bScrollCollapse" : true,
"bPaginate" : false,
"bSort" : false,
"sInfo" : "",
"sInfoEmpty" : ""
});
var oFC = new FixedColumns(oTable2, {
"iLeftColumns" : 4,
"sHeightMatch" : "auto",
"iLeftWidth" : 405
});
Thanks Shikha
source
share