-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
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
Checkbox columns non proper rendered in CRUD #321
Comments
gustavnavar
added a commit
that referenced
this issue
Nov 20, 2021
Package 3.0.3 fixes this issue |
it's ok, tnx! |
rgentry09
pushed a commit
to rgentry09/ERP-ASP.NET
that referenced
this issue
Jul 10, 2023
dev0926
added a commit
to dev0926/gridNET
that referenced
this issue
Feb 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
input type=checkbox should not apply class "form-control", but "form-check"
In bootstrap5 this is render in the CRUP pages as a small long textbox and not as a checkbox.
There are no occurrences of bit fields in Grid.blazor crud samples, I add one in my project and add to function in class ColumnCollections the column definition like this
c.Add(o => o.IsThisRequired).Titled("Require this")
.This is still rendered as a checkbox in bootsrap3 - even if the applied class is non corrected, but not if last version bootsrap5 is used.
The correct class to apply if "form-check"
The text was updated successfully, but these errors were encountered: