Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MudSelectExtended triggers a MudForm FieldChanged on Load #470

Open
ShazCB opened this issue Oct 8, 2024 · 0 comments
Open

MudSelectExtended triggers a MudForm FieldChanged on Load #470

ShazCB opened this issue Oct 8, 2024 · 0 comments

Comments

@ShazCB
Copy link

ShazCB commented Oct 8, 2024

Implement a MudSelectExtended inside a MudForm.

Form:

`


@if (Dirty)
{
DIRTY
}

@code {
public bool Dirty {get;set;} = false;
private IEnumerable _selectedValues = new List { 2, 3, 4};
private ICollection _options = new List {1, 2, 3, 4, 5};
public void FieldChanged()
{
Dirty = true;
}
}`

SelectExtended:
`

@code {
[Parameter]
public IEnumerable SelectedValues { get; set; } = null!;

[Parameter]
public ICollection<int> Options { get; set; } = null!;

}`

On load, the select extended being set triggers the field changed on the parent form. This does not happen with a MudSelect

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant