Hi,
I don’t have a function in DFFS that does this, but you can do it like this in a custom function in the Custom JS textarea:
Use this line to change the label of a SBS field – “FieldNumber1” is the FieldInternalName:
$("#sbs_FieldLabel_FieldNumber1").find(".ms-standardheader").text("test");
Use this to set the label of a standard field not in SBS configuration:
$("#dffs_FieldNumber1").find(".ms-standardheader").text("test");
If you pass this key in the URL from the vLookup “prefill value in child”
FieldNumber1=New label
you can use this code to set the value:
$("#sbs_FieldLabel_FieldNumber1").find(".ms-standardheader").text(GetUrlKeyValue("FieldNumber1"));
Hope this helps,
Alexander
-
This reply was modified 8 years, 8 months ago by Alexander Bautz. Reason: Fixed typo in field name