Hello,
Is there any way to use an SfMultiSelect with enum [Flags] ?
https://learn.microsoft.com/en-us/dotnet/api/system.flagsattribute?view=net-7.0
enum PersonType: int
{
Contact = 1,
Order = 2,
Delivery = 4
}
Value = sum of selected values
6 : Order(2) and Delivery(4) selected
Thanks
JF