Hi Emily Billing,
I have column (for ex column name is SupplierName) and I have a value in that field, I want to update same value in the multiple columns while submitting the request.
I wrote a function like below to update value in some other columns
function SupplierName(value) {
NWF$("#" + col2).val(value);
NWF$("#" + col3).val(value);
NWF$("#" + col4).val(value);
}
I can able to get the value from the suppliername filed by using below
value= NWF$("#" + SupplierName).val();
Now I want to know how can I call that function and pass the value to another fields
Thanks,
Jagadeeswar Reddy D.