selection for checkbox in grid

Have added a NoYes enum checkbox field in the customer transactions grid. the grid can hold more than one record for one account num . i want to restrict the user to choose only one checkbox per account num, so that checking the box for an account num record will uncheck the box of any other record of the same account num.

I appreciate any solutions to this :slight_smile:

thanks in advance !!

Hi Vijay,

In ur datasource method - active method you can give validations like what are the fields need to checked or in your validate write method, based on the combinations of selection only allow the record to be saved else throw error saying the exact thing to be done.

Thank you !!