Semantic-UI-Calendar
Semantic-UI-Calendar copied to clipboard
Calendar module for Semantic UI
This will make it easier to import the module in project so instead of ```javascript require("semantic-ui-calendar/dist/calendar.js"); ``` it will be ```javascript require("semantic-ui-calendar"); ``` though importing CSS will be the same,...
when i select a date from date picker example i select 1992-02-01 i submit the form everything is ok but when i comback to the page i find that the...
How can i change to format yyyy-MM-ddThh:mm? ``` `ampm: false, monthFirst: false, formatter: { date: function (date, settings) { if (!date) return ''; var day = date.getDate(); var month =...
ng-model Can't catch changes using basic `$('#rangestart').calendar({ type: 'date', endCalendar: $('#rangeend') }); $('#rangeend').calendar({ type: 'date', startCalendar: $('#rangestart') });`
Adding a hidden input field influence how the popup is drawn. It should use only one input field to draw the popup from instead.
Fixes #114
With a inline calendar, on mobile, if you touch on a date and start scrolling the page from there, after scrolling and releasing the touch, the date will be selected....
I want no popup but also can choose the date the code like this: $('#calendar').calendar({ type : 'date', startMode: 'day', inline: true, disableMinute:true, formatter: { date: function (date, settings) {...
I have 2 calendars, the 1st one is a date calendar, the 2nd one is a datetime calendar. I set the 1st calendar as `startCalendar` for the 2nd one. When...
Is there a way to format the date in the 'day' view where the hours are shown? And also, can we change the formatting of the time to 24 hours?...