Got a progress on date filter,
I add following code to my php endpoint:
else if ($condition == "lte")
{
$fc[] = $dataIndx . " <= ?";
$param[] = $text;
}
else if ($condition == "gte")
{
$fc[] = $dataIndx . " >= ?";
$param[] = $text;
}
else if ($condition == "between")
{
$fc[] = $dataIndx . " >= ?";
$fc[] = $dataIndx . " <= ?";
$param[] = $text;
}
but I still can't make $condition == "between" to work, any idea?
..and after that still 2 more to go..