What I would like to do is the following:
var handler1 app.createClientHandler().
forTargets(textbox2).setText(textbox1.getText());
However .getText doesn't exist on the client side.
I can get it to work using ServerHandler and e.parameter.textbox1:
v3.setText(e.parameter.textbox1);
Are there other solutions or workarounds?