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

Was it helpful?

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

OTHER TIPS

Try adding below CSS on your list form page:

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

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top