Announcement

Collapse
No announcement yet.

SelectManager query for Multi Enum field

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • SelectManager query for Multi Enum field

    Hi,

    What is the correct way to make filtering easier with Multi Enum field. Looks like simple "whereClause" is not enough.

    Any inputs would be appreciated.

    Thanks!

    Regards,
    brian

  • #2
    Its fine now. I used "IN" functionality.

    sample:
    PHP Code:
    $result['whereClaus'][] = array('tag*' => '[%"NEWS"%]'); 

    Comment

    Working...
    X