I think I caused my own problem. Sorry for any confusion.
1. I had a field called FIELD1 that was a cascading drop down
2. I added custom JS to change the label
a. $(fields[‘FIELD1’]).find(“.ms-formlabel h3”).text(“Field 1 Friendly”);
3. It no longer appeared to be required
Fix
1. I updated the jquery to include the * in the renamed label
2. I added jquery to make the * red
$(fields[‘FIELD1’]).find(“.ms-formlabel h3”).text(“Field 1 Friendly *”);
$(“h3”).each(function() {
var html = $(this).html().replace(/\*/g, “<span class=\”asterisk\”>*</span>”);
$(this).html(html).find(“.asterisk”).css(“color”, “red”);
});
-
This reply was modified 9 years, 6 months ago by Kasey.
-
This reply was modified 9 years, 6 months ago by Kasey.