day-schedule-selector
day-schedule-selector copied to clipboard
A jQuery plugin to render a weekly schedule and allow selecting time slots in each day.
Add options key "enableHorizontalSelection: true" to use this feature
I have a use case that requires a schedule table that is taller than some browser windows, and in user testing it seemed to be expected that the browser would...
### Hi! I found your plugin very useful but I needed an event on deselect a slot, so I made the changes put an example of use in the README.md...
Pretty self explanatory. You can unselect the same way you select, instead of only being able to do it one timeslot at a time.
Good for if you only want to display the availability and not have people select it. Default is that it is editable. ex: ``` $("#weekly-schedule").dayScheduleSelector({ interval: 60, startTime: '05:00', endTime:...
Added two new options, stringDays, which will allow somebody to translate into any language the days list , also added the timeFormat, which accepts two values (hh:mm or HH:MM) and...
How to get all selected times on all days
How to get selected cell data? when I call `$("#day-schedule").on('selected.artsy.dayScheduleSelector', function(e, selected) { console.log(selected); })` it will return cyclic object, how to deserialize it and get selected day & time...
I'm trying to populate this time ranges `[['08:00','10:30'],['11:00'],['12:00','20:00']]` but because of that `['11:00']`, the graphic gets disordered. I couldn't find a way to select a single time cell.
It would help, if i could drag my selection horizontal over the weekdays to select a timeslot at a given time over several days. Could you please add this feature?...