Hi.
I used gird with hidden features and no problem existed.I want to use bootstrap, so I added the bootstrap to the stylesheet. But there is a problem with the column selector dialog when I turn on. There is scrollbars in the dialog box and when resizing the column selector dialog, it be break.How to I can fix it?
Hello Bui,
I have investigated your issue, and I have asked our engineering staff to examine this further. To ensure that it will receive attention, I have logged this behavior in our internal tracking system with a Development ID of 238595.I've opened a private case for you with number: CAS-184851-N6D8P6 and have linked the development issue to it so that you'll be notified once the issue has been resolved.You can find the case by going to your account on our web site and then to the "Support activity" tab.You can view the status of the development issue connected to that case by selecting the "Development Issues" tab when viewing this case.
Please let me know if you need more information.
Best regards,
Yuki MitaDeveloper Support EngineerInfragistics Inc.www.infragistics.com/support
After reviewing this behavior, we decided not to fix this since the change in the box sizing will affect a lot of the widths and heights in the grid not just in this particular scenario. This can be worked around by setting the box sizing back to the default value after the bootstrap theme:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<style>
* {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
</style>
The attached sample reflects the above workaround. If you have any question with this, please let me know.
Yuki Mita
Developer Support Engineer
Infragistics Inc.
www.infragistics.com/support