Any easy API calls for adding custom button to SlickGrid in the header toolbar?
Also, if you could comment how do I get rows, that were filtered or selected via checkboxes via such a button and do some magic and alter data would be welcome 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For the answer to both questions, check the slick.checkboxselectcolumn.js plugin.
You can alter the column header with the
grid.updateColumnHeader(myhtml)methods, wheremyhtmlis some html fragment (including buttons) that you want to insert to the header.If you want to check the selected rows, just bind to the
grid.onSelectedRowsChanged()event.