Dimitrios Maragkos
Dimitrios Maragkos
Hi, @Sparkmb21 wants to achieve multiline select items but to my knowledge select options don't accept css styling (browsers ignore it). I suggested to use Dropdown instead. Linking the stackoverflow...
Maybe you can truncate the values to a specific character length using string.Substring method ``` @("Long text...........................".Substring(0, 20)) ```
@InzeNL is talking about theses corners:  which should be rounded:  @stsrki the class `has-validation` needs to be added to the `input-group` element when it contains validation feedback in...
This is a Bootstrap 5 issue. There is already an open Pull Request to fix it. https://github.com/twbs/bootstrap/issues/36656 https://github.com/twbs/bootstrap/pull/36657
Maybe you could add checkboxes for MultiSelect mode and do it like this: 
You could simply use display flex: ``` @context.CellValue ```  `Slider` component uses `` internally so you can display ticks by using `list` attribute: ``` ```  This is not...
It's actually bootstrap that doesn't have support for input type range inside input groups. `` component internally uses the bootstrap [input-group](https://getbootstrap.com/docs/5.2/forms/input-group/) class. `input-group` seems to work with inputs that are...
Hi @stsrki, @David-Moreira, I'm thinking of giving this a try. I have 2 questions: When there is not any step selected (either `SelectedStep` == null or not found in stepItems...
I had to create my own component for generating [CSS grid](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout) layouts with drag and drop support. You can take a look and find out if it can be useful...
This would be a nice feature!