Skip to content

celso-wo/semantic-datepicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Semantic - Datepicker

This is a simple datepicker for Semantic-UI. It was initially designed to be used in the backend of Kiik, a mobile payment app.

Its creates dropdown with date picker that you choose a date between an interval. Also it's possible select a range of date.

Usage

Dependencies

This component relies on Semantic-UI, Moment.js and jQuery.

  <link rel="stylesheet" type="text/css" href="./css/semantic/semantic.css">
 
  <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script>
  <script src="./js/semantic/semantic.js"></script>
  <script src="./js/moment/moment-with-locales.js"></script>
  
  <!-- Semantic DatePicker Files -->
  <link rel="stylesheet" type="text/css" href="./css/semantic-datepicker.css">
  <script src="./js/semantic-calendar.js"></script>
  <script src="./js/semantic-datepicker.js"></script>
  <script src="./js/semantic-daterangepicker.js"></script>  

Calendar

  <!-- HTML part -->
  <table id="calendar"></table>
  
  <script type="text/javascript">
    $(document).ready(function(){
      $("#calendar").semanticCalendar({
        // No options is mandatories
        locale: 'pt-br',
        name: 'calendar',
        minDate: moment().subtract(6, "months"),
        maxDate: moment(),
        selectedDate: moment()
      }).on("semanticCalendar:change", function(e, date){
        // Calendar change event
        console.log(date);
      });
    });
  </script>

Date Picker

  <!-- HTML part -->
  <div id="datepicker"></div>
  
  <script type="text/javascript">
    $(document).ready(function(){
      $("#datepicker").semanticDatePicker({
        // No options is mandatories
        locale: 'en',
        name: 'datepicker',
        minDate: moment().subtract(6, "months"),
        maxDate: moment(),
        selectedDate: moment()
      }).on("semanticDatePicker:change", function(e, date){
        // Datepicker change event
        console.log(date);
      });
    });
  </script>

Date Range Picker

  <!-- HTML part -->
  <div id="daterangepicker"></div>
  
  <script type="text/javascript">
    $(document).ready(function(){
      $("#daterangepicker").semanticDateRangePicker({
        // No options is mandatories
        locale: 'es',
        startDateName: 'startDate',
        startDate: moment().subtract(10, "days"),
        endDateName: 'endDate',
        endDate: moment(),
        minDate: moment().subtract(6, "months"),
        maxDate: moment()
      }).on("semanticDateRangePicker:change", function(e, startDate, endDate){
        // Daterangepicker change event
        console.log(startDate);
        console.log(endDate);
      });
    });
  </script>

License

It is available under the MIT license.

--

The MIT License (MIT)

Copyright (c) 2015 Celso Wo

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published