Hey jreddell145,
I'm having this same issue. Just to get your script running you can change the relationshipListParentColumn: "SURVICE_x0020_Division" to relationshipListParentColumn: "SURVICE_x0020_Division Required Field". and spservices will find what it needs. At least in my case it did.
Another jack I've got working is just adding this at the beginning of my code :
$( "select[Title$=' Required Field']" ).each(function(){
I installed SP2 On Prem about 2 weeks ago and everything was fine. Then I discovered my workflows were not starting, so I applied the December 2013 CU. THAT is when the reuired field issue occurred -- somewhere between SP2 and the December 2013 CU.
I'm having this same issue. Just to get your script running you can change the relationshipListParentColumn: "SURVICE_x0020_Division" to relationshipListParentColumn: "SURVICE_x0020_Division Required Field". and spservices will find what it needs. At least in my case it did.
Another jack I've got working is just adding this at the beginning of my code :
$( "select[Title$=' Required Field']" ).each(function(){
$(this).attr("Title", $(this).attr("Title").split(" Required Field")[0]);
});
$("input[Title$=' Required Field']").each(function () {
$(this).attr("Title", $(this).attr("Title").split(" Required Field")[0]);
});
Mark, I installed SP2 On Prem about 2 weeks ago and everything was fine. Then I discovered my workflows were not starting, so I applied the December 2013 CU. THAT is when the reuired field issue occurred -- somewhere between SP2 and the December 2013 CU.