showBooleanOperators

Purpose

This property allows you to specify whether to show or hide the Boolean operator component in the filter interface. Setting it to true shows the component.

Note:

This property applies to the new UI, not the classic UI. Most Platform tenants are using the new UI. However, tenants on older Private Cloud installations might still be using the classic UI.

This property is not supported in portals.

Setting it to false hides the component. The screen below shows the Boolean operator component and the advanced filter option component in the filter interface:

Filter UI with Boolean and Advanced Features

When used in conjunction with showAdvancedFilterTypes, and both are set to false, the entire row in which they appear is hidden, saving vertical space on the screen:

Filter UI No Boolean or Advanced

Note: You must set this property's value in a custom sidebar script that executes before the UI starts. See Executing a script before the UI starts for details.

Fully qualified name

rb.newui.options.filters.showBooleanOperators

Example

The following code hides the Boolean operator component.

 <script id="executeBeforeUIStarts">
	rb.newui.options.filters.showBooleanOperators = false;
	
</script>