My NewForm and EditForm contains required fields and I am performing some business validations on required field values.
i,e. value entered by user must meet some conditions. I am using getListItems function of SPservices. to get the values and validate it. now for all the required fields I am getting JavaScript 'Undefined' error.
I was reading the discussion :
http://sympmarc.com/2014/01/23/office-365-update-changes-display-name-on-required-fields/
I think Brandon Anderson suggestion in the discussion will help. we just need to place this code in the beginning of every custom script file
$( “select[Title$=' Required Field']” ).each(function(){
$(this).attr(“Title”, $(this).split(” Required Field”)[0]);
});
i,e. value entered by user must meet some conditions. I am using getListItems function of SPservices. to get the values and validate it. now for all the required fields I am getting JavaScript 'Undefined' error.
I was reading the discussion :
http://sympmarc.com/2014/01/23/office-365-update-changes-display-name-on-required-fields/
I think Brandon Anderson suggestion in the discussion will help. we just need to place this code in the beginning of every custom script file
$( “select[Title$=' Required Field']” ).each(function(){
$(this).attr(“Title”, $(this).split(” Required Field”)[0]);
});