Hey, I would like to ask, if it is possible to make multiselect dropdown control value bindable. I was unsuccessfull doing that.
It's working when I add initial value to control, but when changes are made through webpage, they're not propagated to Value property. Using bind-value I wasn't able to compile.
Use case:
<EjsMultiSelect id="someId" value="@Value" PlaceHolder="Some place holder" DataSource="@localdata">
<MultiSelectFieldSettings text="Name" value="Key"></MultiSelectFieldSettings>
</EjsMultiSelect>
@code{
public string[] Value {get; set;}
...
}
I'm using latest preview-6 and preview-6 compatible version.
Thank you in advance.