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
This is a (multiple allowed):
bug
enhancement
feature-discussion (RFC)
BootstrapUI Version: 4.0.0.
Bootstrap Framework Version: 5.1.3
jQuery: N/A
Platform and Target: N/A (apache on Linux, Firefox web browser)
echo $this->Form->select('version', $versions);
It should have class="form-select" and look identical to
class="form-select"
echo $this->Form->control('version', [ 'type' => 'select', 'options' => $versions, 'label' => false, ]);
The first version of the select is missing the "form-select" class and thus does not have the dropdown arrow expected of a select box.
bootstrap-ui/src/View/Helper/FormHelper.php
Line 855 in 6924ce4
form-select
$this->Form->select()
The text was updated successfully, but these errors were encountered:
form-*
checkbox()
select()
Successfully merging a pull request may close this issue.
This is a (multiple allowed):
bug
enhancement
feature-discussion (RFC)
BootstrapUI Version: 4.0.0.
Bootstrap Framework Version: 5.1.3
jQuery: N/A
Platform and Target: N/A (apache on Linux, Firefox web browser)
What you did
Expected Behavior
It should have
class="form-select"
and look identical toActual Behavior
The first version of the select is missing the "form-select" class and thus does not have the dropdown arrow expected of a select box.
Extra info
bootstrap-ui/src/View/Helper/FormHelper.php
Line 855 in 6924ce4
form-select
is added. It needs to also add in the case of$this->Form->select()
.Commit where functionality was added: ea518ff
The text was updated successfully, but these errors were encountered: