Copy value to Single Line of text
Posted: 18 Dec 2018
Hi,
I have used this script to copy values from a lookup to SLT.
Is there a way to tweek this script in order to get the value from a people picker field?
In advance, Thanks!
Vegard
I have used this script to copy values from a lookup to SLT.
Code: Select all
fd.onsubmit(function(){
var lookuptext = fd.field('Lookup').control('getSelectedText');
fd.field('Text').value(lookuptext);
return true;
}
);
In advance, Thanks!
Vegard