cancel
Showing results for 
Search instead for 
Did you mean: 

check table values

Former Member
0 Kudos

I create a application , This my table

clumn C is a check box field,

CB is checkbox sign.

clumn A clumn B clumnC

1 2 CB

2 2 CB

3 3 CB

if clumn C checked is true

when I display table, clumn A, clumn B, clumn C readonly properties are all true.

How can I do for this

Thanks.

Carlotima

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Your columns should have a TableCellEditor - in this example I would assume an InputField, correct? Click on that item and on the properties tab, bind the readonly property to a value attribute that is boolean.

Now, manipulate that boolean via writing a code under an action you'll create on the checkbox onToggle property.

Hope that solves your requirement.

Regards,

Jan

Answers (1)

Answers (1)

Former Member
0 Kudos

Thank you!

your answer is very useful!