Removing buttons from QueryWebPart

LabKey Support Forum (Inactive)
Removing buttons from QueryWebPart Jon (LabKey DevOps)  2017-03-15 11:21
Status: Closed
 
Hi Will,

Alternatively, you can use the value "buttonBarPosition: none" to also remove the buttons.

For example:

<div id="MyQuery" />
<script>
new LABKEY.QueryWebPart({
        renderTo: 'MyQuery',
        schemaName: 'core',
        queryName: 'users',
        buttonBarPosition : 'none'
    });
</script>

Regards,

Jon