Form 3.0 -> setItemValue + onChange Event

Hello,
when I assign a value of “input” element:
form.setItemValue (“input”, “inpText”);

then “onChange Event” is not triggered…

Is there any event listener, that will catch it?

thanks

Unfortunately, no.
Events control only “unexpectable” actions of user, but not programmed actions sended from a server side.
You can simply add a needed command to execute right after a method setItemValue().

Ok, as I expected :slight_smile:
I did it that way…