Hi,
I need to make a custom filter (I know the built-in filter but it does not suit me because I need a more complex one).
I started with something basic:
I put this in the header of the listing:
The Conditions box is as follows:
Unfortunately it doesn't work. $var is always empty. Am I missing something ?
I need to make a custom filter (I know the built-in filter but it does not suit me because I need a more complex one).
I started with something basic:
I put this in the header of the listing:
Email: <input type="text" name="emai11" placeholder="email here" class="form-control A" />
<br>
<input type="submit" name="submit" value="Submit" />
The Conditions box is as follows:
<?php
$var = JRequest::getString('email11','', 'get');
return array('Orders.email' => $var);
?>
Unfortunately it doesn't work. $var is always empty. Am I missing something ?