Dimitrios Maragkos

Results 14 comments of 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: ![190365827-ad210c1d-8b91-4600-abc4-6d6a8515fc13](https://user-images.githubusercontent.com/34100964/190417167-fbee12d6-c3cf-470e-af58-f5f08952ae1f.png) which should be rounded: ![190366131-f8f229fa-d3a6-4a08-a327-603d5acc94db](https://user-images.githubusercontent.com/34100964/190417210-b4e2ddec-786c-4c64-a42e-0c184ed1882f.png) @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: ![vd4b6](https://user-images.githubusercontent.com/34100964/116621716-4d095d00-a94c-11eb-9f3d-bccc9a525844.png)

You could simply use display flex: ``` @context.CellValue ``` ![Captuafaare](https://user-images.githubusercontent.com/34100964/185724294-4465a4a6-dd8b-4df4-bec1-b595879ffd05.PNG) `Slider` component uses `` internally so you can display ticks by using `list` attribute: ``` ``` ![Capaafature](https://user-images.githubusercontent.com/34100964/185724209-e8506333-2f90-49f4-8293-40ed6b232caf.PNG) 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...