Skip to main content
Nintex Community Menu Bar

Nintex Forms 2013 - change handler for external data column control

  • February 24, 2015
  • 1 reply
  • 4 views

Forum|alt.badge.img+9

Does anybody know how to register a Javascript change handler for a external data column control an how to get the value of the control?

Depending on value change I have to populate another control.

 

I could get the value with

NWF$('.KUNNR :input:nth-of-type(4)').val()

but it depends of the generated html and it should be horrible to maintain.

 

I have tried a change handler NWF$('.KUNNR :input:nth-of-type(4)').change(...) but it's not called.

 

 

Kind regards

 

Manfred

1 reply

Forum|alt.badge.img+9
  • Author
  • March 23, 2015

Hi Milen,

thank You for the answer - it works!

To get the value of the control I use

NWF$(this).find('div').attr('displaytext');

Kind regards

Manfred