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
Hi,
i am thinking about implementation: https://github.com/flatlogic/awesome-bootstrap-checkbox. What you think?
The text was updated successfully, but these errors were encountered:
Hi
This library looks good, but html that you need to generate is diferent than bootstrap html:
This is bootstrap way:
<div class="checkbox"> <label> <input type="checkbox" value=""> </label> </div>
And for this checkboxes you need to change it to
<div class="checkbox"> <input type="checkbox" id="checkbox1"> <label for="checkbox1"> Check me out </label> </div>
And this should be breaking change for this library.
Maybe to create new nette "Renderer" that will generate this kind of output.
Sorry, something went wrong.
Yea, i know, but this is a problem: https://api.nette.org/2.4.0/source-Forms.Controls.Checkbox.php.html#65
No branches or pull requests
Hi,
i am thinking about implementation: https://github.com/flatlogic/awesome-bootstrap-checkbox. What you think?
The text was updated successfully, but these errors were encountered: