You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we use the defineAllowableValues method to provided for a drop down select box for any filter field that has spaces in it's potential values, the said field displays a blank in the table listing.
This may be rectified by urldecode of the filter value before usage at line 1302 by changing:
$filter_value = $_REQUEST[$field];
to be:
$filter_value = urldecode($_REQUEST[$field]);
The text was updated successfully, but these errors were encountered:
apmuthu
added a commit
to apmuthu/ajaxcrud
that referenced
this issue
Jan 25, 2019
When we use the
defineAllowableValues
method to provided for a drop down select box for any filter field that has spaces in it's potential values, the said field displays a blank in the table listing.This may be rectified by
urldecode
of the filter value before usage at line 1302 by changing:to be:
The text was updated successfully, but these errors were encountered: