Advanced Filter - Demo2 NEW
Simple Advanced filter - Hidden Panel
HIDE CODE
<?php
$xcrud = Xcrud::get_instance();
$xcrud->table("payments");
$xcrud->label("customerNumber","Customer Number");
$xcrud->label("paymentDate","Payment Date");
//1st Param: whether to show or hide advanced search button
//2nd Param: Position to show advanced panel. Can be top, bottom, right or left
//3rd Param: Makes the advanced panel either opened or closed on window load
$xcrud->advanced_search_active(true,'left',false);
//1st Param: Sequence of field arrangement. Start with 1
//2nd Param: Field Name
//3rd Param: Operator can be "<",">","=","IN","LIKE"
//4th Param: Search Column Title
$xcrud->advanced_filter(1,"amount",">","Amount Greater Than");
$xcrud->advanced_filter(2,"amount","<","Amount Less Than");
$xcrud->advanced_filter(3,"paymentDate",">", "Payment date greater than ");
$xcrud->advanced_filter(4,"checkNumber","LIKE", "Check Number Like ");
echo $xcrud->render();
?>
Payments
| # | Customer Number | Checknumber | Payment Date | Amount | |
|---|---|---|---|---|---|
| 1 | 158 | 12-123456_ | 19.11.2004 00:00:00 | 7 | View Edit Remove |
| 2 | 161 | 12-3456___ | 14.11.2004 16:00:37 | 7 | View Edit Remove |
| 3 | 161 | BR478494 | 18.11.2003 00:00:00 | 7 | View Edit Remove |
| 4 | 161 | KG644125 | 02.02.2005 00:00:00 | 12692.1955 | View Edit Remove |
| 5 | 161 | NI908214 | 05.08.2003 00:00:00 | 12692.1955 | View Edit Remove |
| 6 | 167 | GN228846 | 03.12.2003 00:00:00 | 12692.1955 | View Edit Remove |
| 7 | 171 | GB878038 | 15.03.2004 00:00:00 | 18997.89 | View Edit Remove |
| 8 | 171 | IL104425 | 22.11.2003 00:00:00 | 42783.81 | View Edit Remove |
| 9 | 172 | 83-2091___ | 09.09.2004 00:34:00 | 1960.8 | View Edit Remove |
| 10 | 172 | EH208589 | 20.04.2003 00:00:00 | 33383.14 | View Edit Remove |