well, let's make this simpler. how do can I change the AND to OR within the $where:
$where = array('blog_categories.id' => 1, 'blog_categories.id' => 2);
from
`blog_categories`.`id` = 1 AND `blog_categories`.`id` = 2
to
`blog_categories`…
Would it be possible to post a working example using the existing Authors, Articles and Categories module? I think it would help others than myself see a working example of customizing the search fields.
I'm still stuck on how to implement drop down list box as well as customizing the search fields. Where is the best place to start my own custom search using some basic layout.
Type [list box] Status [lsit box]
Last Name…
Ok, I tried to implement this and getting stuck. I see the Category UI filter drop down list on my list view but there's no list items being displayed.
I built a controller to use an existing model.
<?php
require_once(FUEL_PATH.'models/module…
How do you add more UI elements for searching other than a generic text search field UI? Like several drop down lists or a combination of them? Or maybe an Advanced Search option.