Git Product home page Git Product logo

ion.calendar's Introduction

ion.calendar

English description | Описание на русском

jQuery-calendar and datepicker, based on powerful library to work with time - Moment.js


Description

  • Ion.Calendar based on powerful library to work with time - Moment.js.
  • Supports all languages, date formats and parsing abilities as Moment.js.
  • Calendar and datepicker in one.
  • Is fully customizable via CSS.
  • Calendar is flexible, can be placed in any content.
  • Supports multiple working calendars at one page.
  • Crossbrowser: Google Chrome, Mozilla Firefox, Opera, Safari, IE(8.0+)
  • Ion.Calendar supports touch-devices (iPhone, iPad, etc.).
  • Ion.Calendar is freely distributed under terms of MIT licence.

Dependencies

Using script

Import this libraries:

  • jQuery
  • moment-with-locales.min.js
  • ion.calendar.min.js

And CSS:

  • normalize.min.css - desirable if you have not yet connected one
  • ion.calendar.css

Prepare base block:

<div class="myCalendar" id="myCalendar-1"></div>

Initialize calendar:

$("#myCalendar-1").ionCalendar();

Or initialize calendar with custom settings:

$("#myCalendar-1").ionCalendar({
    lang: "ru",                     // language
    sundayFirst: false,             // first week day
    years: "80",                    // years diapason
    format: "DD.MM.YYYY",           // date format
    onClick: function(date){        // click on day returns date
        console.log(date);
    }
});

Making datepicker

Prepare base input field:

<input class="myInput" id="myDatePicker-1" data-lang="ru" data-years="1995-2013" data-sundayfirst="false" />

Initialize datepicker:

$("#myDatePicker-1").ionDatePicker();

Settings

Property Default Description
lang "en" An optional parameter that allows you to set the language of the calendar. Each additional language requires its own localization file
sundayFirst true An optional parameter that allows you to choose the first day of the week in the calendar. (For example in the U.S. week starts on Sunday in Russia on Monday). If true - then the first day will be Sunday, if false - it will be Monday.
years "80" An optional parameter that specifies the years range, for calendar to operate with. It may take 1 or 2 values separated by a hyphen. The values must be integers. A single value, such as "80" means that years range is: 80 years ago - the present year. Values separated by a hyphen, such as "1900-2000" sets the exact diapason from 1900, until the year 2000.
format An optional parameter that specifies the format of the returned date. Basic values: empty - will return date in ISO8601 format; "moment" - will return moment() object; "string formed by the rules of Moment.js" - will return date in that format. For example "YYYY-MM-DD" - will return "2013-07-15".
clickable true An optional parameter, if set to false - clicks on the days will do nothing.
hideArrows false An optional parameter, hides prev and next arrows.
startDate An optional parameter, allows to show selected date in calendar field (datepicker use it).
onClick Callback function. Returns selected date as string or moment() object.
onReady Callback function. Returns current date then calendar is ready.

Support Ion-series plugins development:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.