-
Hi, I am new to Blazor and Blazorise, and I am currently experimenting with Anyway, this is what my code looks like:
My problem is:
Finally, feel free to correct my ways if I am doing this all wrong, I am willing to learn! :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, thanks for tying out the Blazorise.
There could be some problems with 2.. Browsers are not good with null or empty values when used in The problem here is that element |
Beta Was this translation helpful? Give feedback.
Hi, thanks for tying out the Blazorise.
<Validations>
should work just fine with a select listThere could be some problems with 2.. Browsers are not good with null or empty values when used in
<option>
element. For example if you have<SelectItem Value="null">"Please select a country"<SelectItem>
it will get translated into something like:The problem here is that element
onchange
will return "Please select a country" as an option value. This is just how browsers work…