i have a CheckBoxList with a list of services that the user can execute… some of this services can’t be executed with some of the others, some services can only be executed alone etc..
All this rules are stored in my database.
Is there anyway for me to disable/enable (make unclikable) checkboxlist items that can’t be executed together, in the event of clicking(checking/unchecking) a service?
I just can’t figure it out, Since I even don’t know how to get the Id of the last clicked item..
You will need to capture the event which fires when a button is selected; when you get the event for a specific button being selected, you can set the other buttons which it is exclusive to to be Disabled.