Duplicating field input to another and vice versa
-
Hi still in awe of this plugin and the support!!!
I am using this duplicating function with a dropdown field
(function(){ if(fieldname16==0 )return getField(27).setVal('0'); if(fieldname16==1 )return getField(27).setVal('1'); if(fieldname16==2 )return getField(27).setVal('2'); })();
to duplicate the selection to another dropdown field, which works great. But I would like to allow the same change to happen the other way as well so have put another calculated field in like below as well
(function(){ if(fieldname27==0 )return getField(16).setVal('0'); if(fieldname27==1 )return getField(16).setVal('1'); if(fieldname27==2 )return getField(16).setVal('2'); })();
But it only works one way, is there something I need to add to get it working both ways?
Many thanks!
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘Duplicating field input to another and vice versa’ is closed to new replies.