cancel
Showing results for 
Search instead for 
Did you mean: 

Text box in a table ui element issue

Former Member
0 Kudos

Hi Experts,

I have a text box in a table which is by default enabled (set in the properties of the textbox).

Please tell me how to disable programatically(at the trigger of an event).

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Context:


Rows (node, 0:N)
-- TextBoxEnabled (attribute, boolean)

Bind TextEdit.enabled to attribute TextBoxEnabled.

To disable text box in table row at index 3:


wdContext.nodeRows().getRowsElementAt(3).setTextBoxEnabled(false);

Armin

Former Member
0 Kudos

Armin

Thanks so much for your help.

I really appreciate it.

Thanks

Answers (0)