Hi@SanfordWhiteman,I am trying to apply the script example to my page but am getting stuck with the FormsPlus piece of the script, the error is that it is not defined. What would I...
Apologies, I'm still new to writing script.If I wanted to make my form picklist values dynamic via javascript what would that look like?We built one that does it for all the field ...
can you use velocity script tokens to accomplish displaying different language values? I set the program language value using a velocity script token that says #set($ProgramLanguag...
We are switching to using global forms but need for them to be localized per program so we had thought this would be a helpful way to do so with the program token indicating the l...
function unchecked() {
var opt = document.getElementById("Opt_In__c");
opt.checked = false;
var check = opt.parentElement.parentElement.parentElement.parentElement;
check.s...
Hi@SanfordWhiteman,
I am trying to use picklist values (option value) in our code that we are developing to translate form fields via a program token, it works great for form field...