7.5 Filters: how do I add "is any of" to the options for a field in a filter?

In Opportunities I would like to change the filter on assigned to from is/is not to is any of/is not any of.

Where would I go to change that definition?

thanks,
FrancescaS
Parents
  • Are you searching filter settings?

    clients/base/filters/operators/operators.php

    $viewdefs['base']['filter']['operators'] = array(    'multienum' => array(
            '$contains' => 'LBL_OPERATOR_CONTAINS', // is any of
            '$not_contains' => 'LBL_OPERATOR_NOT_CONTAINS',
        ),
        'enum' => array(
            '$in' => 'LBL_OPERATOR_CONTAINS', // is any of
            '$not_in' => 'LBL_OPERATOR_NOT_CONTAINS',
        ),
    ...
    ...
Reply
  • Are you searching filter settings?

    clients/base/filters/operators/operators.php

    $viewdefs['base']['filter']['operators'] = array(    'multienum' => array(
            '$contains' => 'LBL_OPERATOR_CONTAINS', // is any of
            '$not_contains' => 'LBL_OPERATOR_NOT_CONTAINS',
        ),
        'enum' => array(
            '$in' => 'LBL_OPERATOR_CONTAINS', // is any of
            '$not_in' => 'LBL_OPERATOR_NOT_CONTAINS',
        ),
    ...
    ...
Children
No Data