Using this script it works on the Add Page, but, not on the popup window with the "Allow to add new values on the fly"?
Any ideas please?
Thanks
Paul.
var ctrl1 = Runner.getControl(pageid, 'Line4');
var ctrl2 = Runner.getControl(pageid, 'Post_Code');
ctrl1.on('change',function(e)
{
var value=this.getValue();
ctrl2.setValue(value);
})