Question

I am using an InfoPath form for a SharePoint list where I have placed two buttons to save and close the form.

SharePoint list form has its own default save close options on top. I want to remove or hide them. How can this be achieved?

Thank you.

enter image description here

Était-ce utile?

La solution

If you customize form for a list, customize form with InfoPath-> click on File -> Info -> Form Options->Uncheck the "Show InfoPath command in Ribbon or toolbar"checkbox,it will completely remove the ribbon, ->Save the changes and publish your form:

enter image description here

If you create a blank form, click on File -> Info -> Form Options->you can uncheck "save" and "Close" checkbox->Save the changes and publish your form:

enter image description here

Autres conseils

Try adding below CSS on your list form page:

#Ribbon\.ListForm\.Edit\.Commit {
    display: none !important;
}

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top