g00fy- / angular-datepicker

calendar and datepicker directives for angular
MIT License
722 stars 421 forks source link

Add support for min-date max-date for dateRange directive #299

Open ramseyfeng opened 7 years ago

ramseyfeng commented 7 years ago

We used this directive in our project, it's better we can also define min & max value for the dateRange directive.

sihuiIE commented 7 years ago

Thank you for the update,

i have the same issue, but my html set is not working with this new update . Am I missing some thing?

here is my html

<html>
    <head>
        <title>sample</title>
        <meta charset="utf-8">
        <meta http-equiv="x-ua-compatible" content="ie=edge">
        <title></title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="apple-touch-icon" href="apple-touch-icon.png">
    </head>

    <body id="body" ng-app="sample">
        <form  class="test-unit">
            <input type="datetime" date-time ng-model="demo" min-view="date" min-date="2016-08-20" max-date="2016-09-20" max-view="date" auto-close="true" view="date" maxlength="10" placeholder="Set Date" format="DD/MM/YYYY">
        </form>

        <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.8/angular.min.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"></script>
        <script src="https://rawgit.com/g00fy-/angular-datepicker/master/dist/angular-datepicker.min.js"></script>
        <script src="./dateRange.js"></script>
        <script>
        var demoApp = angular.module('sample', ['datePicker']);
        </script>
    </body>
</html>

could you give me a hit?

ramseyfeng commented 7 years ago

This pull request has not been merged to branch yet. Do you have a plunker for it.