Enable button on row select
Enable button on row select

Hi
I have added a custom button that I need to be disabled until a row is selected. What's the easiest way to achieve this?
Thanks
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Use the
select
event and in the event usebutton().enable()
to enable the button. Conversely use thedeselect
to disable the button. This example will show how to get the selected row count to see if there are selected rows before disabling the button.Kevin
Thanks Kevin. I'm trying to use the
select
event but can't get it to fire. Be great if you could take a look at my code...Looks like it should work. Did you add the select extension JS and CSS? You can use the Download Builder to get the code.
Kevin
Using this...
You may need to change this:
to this:
Noticed the upper case
D
in DataTable. This discusses the differences:https://datatables.net/manual/api#Accessing-the-API
Kevin
That did it. Great spot! Thank you.