code-snippets icon indicating copy to clipboard operation
code-snippets copied to clipboard

onChange client script defined on a MRVS is not working as expected

Open sauravsumankumar opened this issue 4 years ago • 0 comments

function onChange(control, oldValue, newValue, isLoading) { if (isLoading || newValue == '') { return; }

var project = g_form.getReference('project_name', populateProjectNumber); 

}

function populateProjectNumber(project) { g_form.setValue('project_number', project.u_project_number); }

sauravsumankumar avatar Oct 09 '21 13:10 sauravsumankumar