i have a text_bot in a repeating panel, that textbox recive a text from a table in my database, i want to ad a checkbox that when checked it will change the color of the background of the textbox in the same row of the repeating table, its possible or its too complicated to add so it would be better if not?
This is fairly simple. The easiest way, if you do not need the state of the checkbox to be stored in data tables, is to just change the text box background in the change event of the checkbox.
If you need the state of the checkbox to be stored in the data tables, you’ll need a boolean field in the data table that represents the checkbox, and use data bindings to map both the state of the checkbox and the background color of the text box to that data table field.
1 Like