Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Filter Builder - Hide Operator

    Hello Isomorphic,
    I special criteria and have single "equals" operator, so I would like to hide the operator drop down. I have tried some options with operatorPickerProperties but did not worked.
    Is there any way to hide the operator? can you please help me on this?

    Thanks

    #2
    If you mean hiding the operator formItem entirely for all clauses in a FilterBuilder, this will do it:

    Code:
    operatorPickerProperties: { showIf: "return false;" }

    If instead you want to show the operator formItem, but not allow the picker to be shown:

    Code:
    operatorPickerProperties: { canEdit: false }
    Last edited by Isomorphic; 21 Aug 2025, 08:02.

    Comment


      #3
      Thank you for the quick response. Operator Hide is working now.

      Comment

      Working...
      X