-
-
Notifications
You must be signed in to change notification settings - Fork 120
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
Excluded menu item is still displayed in Bootstrap4 #321
Comments
Good catch, I wasn't aware that this class was removed in BS4, we still use BS3 for our project so. .slick-gridmenu-list {
li.hidden {
display: none;
}
} I recommend you do this change on your local, because I'm not planning on releasing a new version just for this (I released yesterday). EDIT Actually I forgot the Column Picker, you need to include both (unless you want to make a .slick-columnpicker-list,
.slick-gridmenu-list {
li.hidden {
display: none;
}
} |
- ref Angular-Slickgrid issue [#321](ghiscoding/Angular-Slickgrid#321) - BS4 removed the "hidden" class making hidden menu showing in both ColumnPicker & GridMenu
Many thanks for prompt response ! |
This was pushed under latest version |
I'm submitting a Bug report
It seems that "hidden" class is no longer available in Bootstrap 4.
This causes those hidden menu items in GridMenu become visible.
https://ghiscoding.github.io/angular-slickgrid-demos/#/editor
Your Environment
Current Behavior
The text was updated successfully, but these errors were encountered: