I have 4 fields that are currency, I am using a business rule to calculate the total which is working. I am trying to set the values of the 4 fields onLoad to $1.00
Is this how I can acchive that? Thanks!
function onLoad() { Test("new_field1"); Test2("new_field2"); Test3("new_field3"); } function new_field1OnChange() { Test("new_field1"); } function new_field1OnChange() { Test2("new_field2"); } function new_field1OnChange() { Test3("new_field3"); } function Test(fieldName) { Xrm.Page.getAttribute(arg).setValue("1.00); }
*This post is locked for comments