Hello,
In quoteitem I need a validation to list price field.
Added validateRequired function in Advanced:Views.QuoteItem.Fields.ListPrice.
validateRequired: function () {
alert("validateRequired");
if(this.model.get("listPrice")>100000){
return true;
}
}
Even the alert not working.
Please help.
In quoteitem I need a validation to list price field.
Added validateRequired function in Advanced:Views.QuoteItem.Fields.ListPrice.
validateRequired: function () {
alert("validateRequired");
if(this.model.get("listPrice")>100000){
return true;
}
}
Even the alert not working.
Please help.
Comment