BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
<EjsMultiSelect @ref="@multiObj" TValue="List<string>" @bind-Value="@MultiSelectID" DataSource="@DataList"
Mode="VisualMode.Box" Placeholder="Enter the value" AllowFiltering=true FilterType="FilterType.Contains"
FloatLabelType="FloatLabelType.Auto">
<MultiSelectEvents TValue="List<string>" ValueChange="@(e => MultiSelectID = e.Value)"></MultiSelectEvents>
</EjsMultiSelect>
@code{
public string TxtValue {
get { return _txtVal; }
set {
if (value == "foo") {
MultiSelectID = null;
DataList = new ObservableCollection<string> { "Four", "Five" };
}
_txtVal = value;
}
}
}
|