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