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
Having this Select:
<select name="template"> <option value="001">001</option> <option value="002">002</option> <option value="003">003</option> <option value="004">004</option> <option value="005">005</option> <option value="006">006</option> <option value="007">007</option> </select>
Created with:
$templates = array(); foreach (glob(base_path('templates/*'), GLOB_ONLYDIR) as $template) { $templates[$template = basename($template)] = $template; } $form['template']->options($templates);
Can not be validated because https://github.com/oscarotero/form-manager/blob/master/src/Validators/Select.php#L29 say that this value not exists.
The text was updated successfully, but these errors were encountered:
fixed some numerical options #60
d2618ba
I added a commit to fix this. Can you check whether it works before release the patch?
Sorry, something went wrong.
test select with option '000' #60
265154b
It's working like a charm!
No branches or pull requests
Having this Select:
Created with:
Can not be validated because https://github.com/oscarotero/form-manager/blob/master/src/Validators/Select.php#L29 say that this value not exists.
The text was updated successfully, but these errors were encountered: