Row selection does not work as expected with Fixed Columns

Row selection does not work as expected with Fixed Columns

snpsnp Posts: 1Questions: 1Answers: 0

Hi Allan,

I have encountered an issue with row selection while using fixed columns.
When I try to select a row in the data tables by dragging mouse (just in the same way as we select text on any webpage), it selects either only the fixed column value or the non-fixed column values in the same row.
I have a very strict requirement from customer about the row selection to include both fixed and non-fixed columns.
Is there any way I can achieve this?

Here is the code:
$('#myTable').DataTable({
"sScrollX" : "750px",
"scrollY": "55vh",
"bScrollCollapse" : true,
"bJQueryUI" : true,
"order": [[ 0, "desc" ]], // Default order: Record Id column - Descending
"paging": false,
"stripeClasses": [ 'stripeOdd', 'stripeEven' ],
"processing": true,
"fixedColumns": true
})

Sorry, I cant share the link to the page as it is not public website.
Let me know if you need more details.

This discussion has been closed.