I have a Datatable in JS with a scroll bar that I added using scrollY. However, it is displaying unnecessary small arrows within the table which I do not want. I have tried various methods to remove them but without success. Can someone please help me with this issue? Also, I apologize for any mistakes in my English as I am new to StackOverflow.
Here is how my datatable is set up:
'scrollY' :'70vh',
// 'targets': [0,1,2,3,],
'paging' : false,
'lengthChange': false,
'searching' : true,
//'ordering' :false,
'order' : [[3,"asc"]],
'info' : true,
'autoWidth' : false,
"data" : gridJson.dataJsonArr,
"columns" : gridJson.columns,
"rowId":primaryKey,