You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using V 1.50 with Visual Studio 2021 .NET 6.0 and Bootstrap 5
The razor css seems to get loaded:
Not using <div class="input-group"> changes the result to this:
Do I have to add my own styles to
a) Make it the same width as the input and
b) Make it dark style?
c) Make it work with input-group because I want to add a button to the control
The text was updated successfully, but these errors were encountered:
Hi @AncientGrief,
Thanks for contacting me. Unfortunatelly components does not support theming and not tested with every Bootstrap class. But it works with Bottstrap and with some custom CSS your issues can be solved. So the answer:
Do I have to add my own styles to:
a) Make it the same width as the input and? -> It is built in feature just use FitDropdownWidth property set to true.
b) Make it dark style? -> No styling for the dropdown but apply CSS suggested.
c) Make it work with input-group because I want to add a button to the control? -> It looks like input-group is messing with the layout and styling. Simple fix in the custom CSS you can use margin-top.
You can add this CSS to your page or styles whichever fits your need....
Maybe I am doing something wrong, but my search results look like this:
Using V 1.50 with Visual Studio 2021 .NET 6.0 and Bootstrap 5
The razor css seems to get loaded:
Not using
<div class="input-group">
changes the result to this:Do I have to add my own styles to
a) Make it the same width as the input and
b) Make it dark style?
c) Make it work with
input-group
because I want to add a button to the controlThe text was updated successfully, but these errors were encountered: