Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Trigger changes in text field

Former Member
0 Likes
643

Dear Expert,

I have a situation like this. I have a text field in dialog and this text field is created using the text box. How I can trigger there is changes in the text field?

Thanks.

1 ACCEPTED SOLUTION
Read only

MarcinPciak
Active Contributor
0 Likes
557

Hi,

Unfortunatelly you can't do this. This functionality is only available for check boxes and radiobuttons. You have to press ENTER key to register the change and trigger PAI.

You can, however, replace your text field with listbox with fuction code, where you provide only available entries (here user can't provide other entry). Now, when the user selects one, it will automatically trigger PAI with this function code. You can react here accordingly.

Regards

Marcin

2 REPLIES 2
Read only

MarcinPciak
Active Contributor
0 Likes
558

Hi,

Unfortunatelly you can't do this. This functionality is only available for check boxes and radiobuttons. You have to press ENTER key to register the change and trigger PAI.

You can, however, replace your text field with listbox with fuction code, where you provide only available entries (here user can't provide other entry). Now, when the user selects one, it will automatically trigger PAI with this function code. You can react here accordingly.

Regards

Marcin

Read only

0 Likes
557

Thanks for your reply Marcin.