Forum Discussion

CarolMcconnell's avatar
CarolMcconnell
Qrew Captain
3 days ago

Embed New QuickBase form on Sharepoint

I'm am embedding a quickbase in an iform on sharepoint and it's working great but we need to hide the form settings icon.  How can this be done?

Thanks,

  • Hello Caroll! if you're embedding a Quickbase form in an iframe (like iForm) and you want to hide the settings icon, there are couple of ways you can try: 

    1. You can try adding a special parameter to the URL of your form. Just append `&ifv=1` to the end of the URL. This will simplify the interface and hide some of the extra UI elements, including the settings icon. For example:

    <iframe src="https://yourapp.quickbase.com/db/yourtable?a=er&ifv=1" width="100%" height="600"></iframe>

    2. If you need more control over what's visible, you can also customize the form properties directly in Quickbase. Just open the form, click on **Customize this form**, and then adjust the settings under the **Properties** tab to hide any unwanted elements.

    3. Another approach is to use roles in Quickbase. You can set up roles for your users and control what they can see and do. Go to **Settings** > **Roles**, select the role you want to modify, and under **User Interface**, uncheck any options that let users see the settings icon or other UI elements you don't want them to interact with.

    4.  If you're still seeing some unwanted elements after embedding the iframe in SharePoint, you can use custom CSS to hide them. For example, you could add some CSS to prevent users from interacting with the embedded UI elements:

    iframe { pointer-events: none; /* Prevent interaction with embedded UI elements */ }

    It's a bit more of a workaround, but it can help if the other options aren't quite what you need.

    To start, I would go into the Quickbase settings and permissions first and see if that does anything before doing anything to the form iframe itself. Good luck and let me know if this worked.