Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi Johan!
Selected weekdays values are simple OR:ed together to form one single value (which is easy and fast to store/retrieve);
Weekday values are: Monday=1, Tuesday=2, Wednesday=4 and so on.
To find out what weekdays are selected, you can use something like this:
bool ismondaySelected = 1==(propertyWeekdayControl.Number & 1);
bool istuesdaySelected = 2==(propertyWeekdayControl.Number & 2);
...
bool issundaySelected = 64==(propertyWeekdayControl.Number & 64);
/johan
How do I retrive selected weekdays in a PropertyWeekdayControl?
I only get one number, even if more weekdays have been selected.