Mehmet Can Karagöz
Mehmet Can Karagöz
It should be shown only on WASM.
> Ok so interestingly if you hardcode the type into the mudselectitem it seems to work? > > https://try.mudblazor.com/snippet/caQckQFkWwbKkjsw Absolutely need to define Type explicitly. Compiler understand "1" as an...
@Garderoben changes are done
> If there is a value on the "nested" list, this take precendence from the parent. However, if there is a parent, it will use their value. If both are...
The implementation is also applied on #5150, on the big List and Select PR.
Thanks for all the efforts. We prepared a new (remake) MudList that already fix the issue. But surely we can compare all your code and also can add tests in...
Thanks, now this issue planned to fix.
@just-the-benno i think its a missing event call. ```cs private void OnClicked() { if (MultiSelection) IsSelected = !IsSelected; MudSelect?.SelectOption(Value); InvokeAsync(StateHasChanged); } ``` There should be a `OnClick.InvokeAsnyc().AndForget();` here, i already...
> The fix should be to redo the inheritance properly and remove both (and possibly other) properties from `MudSelectItem`. We can discuss in the select PR #5150. I made some...
Can someone provide an try.mudblazor snippet? I have an idea but need to test on a problematic example.