use of Rowselect and Fixed Column together auto hides multiple rows

use of Rowselect and Fixed Column together auto hides multiple rows

imran_akmimran_akm Posts: 1Questions: 1Answers: 0

Hi,

I am facing issues in implementation of dataTables.

The requirement is to fix leftmost column and keep row select on.
On click of any cell after row 10, hides the first 10 rows.

this.options = {
"scrollX": true,
"scrollY": "550px",
"scrollCollapse" : true,
"paging": false,
"lengthChange": false,
"info": false,
"searching": false,
"orderMulti": false,
"ordering": false,
"columnDefs": [
{ "width": "20%", "targets": [0] },
{"targets" : [1], "visible": false}
],
searchOptions: {
displaySearchTextbox: false
},
rowSelect: true
};

This discussion has been closed.