Hi @ll!
It is possible to change the value of a dropdown change the field value of a textbox?
I thought about using the Events dropdown, but did not work:
Thanks in advance
It is possible to change the value of a dropdown change the field value of a textbox?
I thought about using the Events dropdown, but did not work:
Thanks in advance
Hi calangoloco,
Yes, but not this way, you need to set the "Action" to "function" and enter the function name in the "fn()" box, then define your function into a "Load JavaScript" action:
Regards,
Max
Yes, but not this way, you need to set the "Action" to "function" and enter the function name in the "fn()" box, then define your function into a "Load JavaScript" action:
function changeValue(){
jQuery("#field_id").val("xyz");
}
Regards,
Max
Thanks!!
This topic is locked and no more replies can be posted.