Hello, can anyone help me?
I am using a radzen drop-down multiple choice populated with the names of the days of the week. Is there a way to display them in the same order they were listed and not in the order in which I select them? Thanks to anyone who answers me
If the day is presented by class for example like this:
public class MyDay
{
public int Id { get; set; }
public string Name { get; set; }
}
You can sort the collection with selected items by Id.
Thank you, it really helped me.