I have gotten several user complaints that it is hard to differentiate the weekday checkboxes.
Is there a way to space them out a bit?
I have tried (without success) to handle the edit event of the scheduler and bind to the change event of the recurrenceeditor dropdown to set the margin style.
function onEdit(e) { var recurDropdown = e.container.find("[data-role=recurrenceeditor]"); // handle recurrence editor's change event recurDropdown.unbind("change", spaceWeekDayChks); recurDropdown.bind("change", spaceWeekDayChks);}function spaceWeekDayChks() { // space out recurrence editor week days // - called from change event of recurrence editor dropdown $('.k-recur-weekday-checkbox').css("margin-right", "20px");}
