Nintex Forms 2013 - change handler for external data column control

  • 24 February 2015
  • 1 reply
  • 3 views

Badge +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

Badge +9

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

Reply