I have a ListBox like this:
<ejs-listbox id="Schnellnavigation" ejs-for="SelectedValues" allowDragAndDrop="true" dataSource="Model.Items">
<e-listbox-selectionsettings mode="Multiple" showCheckbox="true" checkboxPosition="Right"></e-listbox-selectionsettings>
</ejs-listbox>
Motel.Items is a List of Items with a text and a value property.
SelectedValues = new List<string>() { "1", "2" };
When i load the page the checkboxes are not selected:
Whats wrong with my code? How can i select the checkboxes?