We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Form.php example you don't have 'checkbox' as an available type and the 'radio' type is actually named 'filter_radio'.
So it needs
private $types = array( 'text'=>1, 'p'=>1, 'select'=>1, 'textarea'=>1, 'filter_radio'=>1, 'checkbox'=>1, );
And function build_radio($id,$data) needs to be changed to function build_filter_radio($id,$data).
function build_radio($id,$data)
function build_filter_radio($id,$data)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the Form.php example you don't have 'checkbox' as an available type and the 'radio' type is actually named 'filter_radio'.
So it needs
And
function build_radio($id,$data)
needs to be changed tofunction build_filter_radio($id,$data)
.The text was updated successfully, but these errors were encountered: