Reset checkbox to false

sor
When i select diffrent row, checkbox will be still filled. I want to reset checkbox's value to false when i select different row. How do i?

can you be a little more clear on what you're looking for?

you could set up a js query attached to your table...
under the "event handler" section for the table add a new event that on 'row select' action 'trigger query'
the query should be a js query that is
checkboxName.setValue(false)

might not be the most efficient way, but not entirely clear on what you're looking for. hope that helps

1 Like

That was really helpful sir. Thank you.

1 Like