Giter Club home page Giter Club logo

gridle-datetimepickers's Introduction

Date, Time and Datetime Pickers for AngularJS 1.5+

Simple Dropdown based pickers

Installation:

  • Clone as a Git repository

    https://github.com/gridle-io/gridle-datetimepickers.git

    [OR]

    [email protected]:gridle-io/gridle-datetimepickers.git
  • Install as a node_module

    npm i gridle-datetimepickers --save
    
    OR
    
    npm install gridle-datetimepickers --save

Getting Started:

  1. Include the Script and add it as a dependency

    • In the browser
        <script src="PATH_TO_REPO/dist/bundle.js"></script>
        <script>
            angular.module('pickers', ['gridle.datepicker']);
            
            // OR
            
            angular.module('pickers', ['gridle.timepicker']);
            
            // OR
    
            angular.module('pickers', ['gridle.datetimepicker']);
    	</script>
    • As an NPM module
        import { datepicker, timepicker, datetimepicker } from 'gridle-datetimepickers';
    
        angular.module('pickers', [datepicker]);
    
        // OR
        
        angular.module('pickers', [timepicker]);
    
        // OR
        angular.module('pickers', [datetimepicker]);
  2. To use the pickers you can use it as follows:

    • Datepicker
    <!-- Datepicker -->
    <datepicker ng-model="datepicker" datepicker-config="datepickerConfig"></datepicker>
    • Date picker config properties
      • max: [Date|string|moment] default=null The maximum date the datepicker should allow
      • min [Date|string|moment] default=null The minimum date the datepicker should allow
      • strict [boolean] strict=true Whether a strict parsing should be done or not
      • validate [boolean] strict=false Whether to perform validation on the value or not
    <!-- Timepicker -->
    <timepicker ng-model="timepicker" timepicker-config="timepickerConfig"></timepicker>
    • Time picker config properties

      • strict [boolean] default=true Whether a strict parsing should be done or not
      • validate [boolean] default=true Whether to perform validation on the value or not
    • Datetimepicker

    <!-- Datetimepicker -->
    <datetimepicker ng-model="datetimepicker" datetimepicker-config="datetimepickerConfig"></datetimepicker>    
    • DateTime picker config properties
      • isUtc [boolean] default=true Whether the dateTime provided is in UTC or not
      • max: [Date|string|moment] default=null The maximum dateTime the datetimePicker should allow
      • min [Date|string|moment] default=null The minimum dateTime the datetimePicker should allow
      • strict [boolean] default=true Whether a strict parsing should be done or not

License

MIT

gridle-datetimepickers's People

Contributors

mdemblani avatar

Watchers

 avatar  avatar  avatar

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.