I have an example of how to programatically reset certain specified fields in a javascript. However, I don't understand how they are deriving the name of the fields. Can someone please explain?
var fields = new Array(2);
fields[0] = "P1.OrderForm.Description";
fields[1] = "P1.OrderForm.Qty";
this.resetForm(fields);
I know how to get the page number (P1.) but I don't know how to find the name of my template (OrderForm. in this example).
Thanks.
var fields = new Array(2);
fields[0] = "P1.OrderForm.Description";
fields[1] = "P1.OrderForm.Qty";
this.resetForm(fields);
I know how to get the page number (P1.) but I don't know how to find the name of my template (OrderForm. in this example).
Thanks.