Page 1 of 1
Required Items
Posted: 22 Oct 2013
by stieland
Is there a way to remove the * for required items? I can remove it for the entire form, but I only want to remove it from some. Ideally, I want to remove it from items that are read-only.
Re: Required Items
Posted: 25 Oct 2013
by Clint Lechner
You can easily do this with CSS and by modifying the orientation of the specific field in Forms Designer.
1. In Forms Designer, change the orientation of the field from Horizontal to Vertical.
2. Add the following code to the CSS section to hide the * for the column named "SomeColumnName".
.fd_field[fd_name=SomeColumnName] > .fd_title > .ms-formvalidation {
display:none !important;
}
Re: Required Items
Posted: 27 Oct 2013
by Dmitry Kozlov
Thanks Clint. Also, you can use the following JavaScript code to hide *:
Code: Select all
fd.field('Title').title().required(false);