Is there a way to add a button just next to column header? lets say just after the 'Sort indicators' ?
for a example
| Id (button) | Name (button) |
Thanks in advance.
Is there a way to add a button just next to column header? lets say just after the 'Sort indicators' ?
for a example
Thanks in advance.
In the past, I have used jquery to add a button to the header. Where my column name was "id":
.append may be helpful. Add a class to the column and then append button to that with requisite css.
I suppose that you knows that you can include HTML markup in the column headers. One should just place HTML fragment instead of the text in the
colNames
. I suppose that you want to add in all column headers some button with an icon and do some custom actions if the button are clicked.You can implement the requirement in many ways. In the demo I show just one from many possible implementation:
on clicking on the custom button an alert will be displayed which shows the name of the column which header was clicked.
The corresponding code is