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
How to add options to select_box helper, if {{select_box "payment_mode" optionValues='Cheque Cash'}} it will generate following html:-
<select class="form-control" name="payment_mode"> <option value="C">C</option> <option value="h">H</option> <option value="e">E</option> <option value="q">Q</option> <option value="u">U</option> <option value="e">E</option> <option value=" "></option> <option value="C">C</option> <option value="a">A</option> <option value="s">S</option> <option value="h">H</option> </select>
when optionValues passed like an array {{select_box 'payment_mode' optionValues=['Cheque Cash'] }}, it raises an Exception
The text was updated successfully, but these errors were encountered:
Sent PR, please verify.
Sorry, something went wrong.
No branches or pull requests
How to add options to select_box helper, if {{select_box "payment_mode" optionValues='Cheque Cash'}} it will generate following html:-
when optionValues passed like an array {{select_box 'payment_mode' optionValues=['Cheque Cash'] }}, it raises an Exception
The text was updated successfully, but these errors were encountered: