Wednesday, May 20, 2015

Attach Event on field - Client side


// select the field and define the event on change
 Xrm.Page.getAttribute('new_fieldName').addOnChange(FieldChanged);


function FieldChanged(){
alert('function FieldChanged');
}

No comments:

Post a Comment