Hi Hristo ,
Thanks for reply But I already used this on sorttogglestates={‘0’} -disable for all sorttogglestates={‘1’} & sorttogglestates={‘1’} – same work enable for all I want this type How disable sorting on click on column title but allow for click on arrow in jqxGrid.
In column renderer I added button and on buttonclick I want to perform some action so in columnclicked event prevent sort.
const columnClicked = (e) => {
console.log(e);
e.preventDefault(); Not working
e.stopPropagation(); Not working
}
Thank you
Ganesh