Hi Everyone,
I want to set notification on the change of subgrid field value calling below code but when changing values from subgrid cell nothings happens ?
function OnChange_telephone(executionContext) { //debugger; var formContext = executionContext.getFormContext(); var mobile=formContext.getAttribute("telephone1").getValue(); //var mobile=formContext.getAttribute("telephone1").getValue(); if(isNaN(mobile)) { formContext.getControl("telephone1").setNotification("incorrect Format","101"); } else { formContext.getControl("telephone1").clearNotification("101"); } }
Please advise if there is other syntax to setNotification on subgrid field?
Regards, Alok