How to?

7 Jun 20235 minutes to read

Customizing template with range selection between two DatePicker.

You can customize the date field to emphasize the particular dates in DatePicker calendar with help of specialDates and set the date range using minDate and maxDate property. Refer the sample from the link Hotel Booking to know how to customize date with date range.

Localize DatePicker with browser specific culture

You can get the browser culture name at page load or document ready state. Based on the culture name, DatePicker can be initiated with that specific culture value by assigning to locale property. Refer the sample from the link Browser Specific Culture to create DatePicker with browser specific culture.

Disable specific dates to restrict user

DatePicker allows you to restrict date selection in specific range by using date range option. But you can also restrict selective date in DatePicker calendar by utilizing beforeDateCreate event. This event will get triggered at each date creation. So you can disable the selective date in this event to restrict the user.

  • JAVASCRIPT
  • $(function () {
    
                // creates DatePicker from input
    
                $("#datePicker").ejDatePicker({
    
                    beforeDateCreate: "restrictDate" // handler to listen each date create.
    
                });
    
            });
    
            //event get triggered for each date create.
    
            function restrictDate(args) {
    
                //date to disable in DatePicker calendar to restrict selection.
    
                var disableDate = new Date("09/22/2015");
    
                //compares two and adds the disable class.
    
                if (+args.date === +disableDate)
    
                    args.element.addClass('e-disable');
    
                // args contains current date and its element.          
    
            }

    How to add clear button with DatePicker?

    Clear button can be included in the DatePicker control. In the created event of DatePicker, clear button element should be appended in the input element and event for clearing the value should bind with the clear button element. Refer the sample from the link Clear button to know how to add the clear button with the DatePicker component.

  • HTML
  • <div class="control">
            <label>Select Date</label>
                <input id="datepick" type="text" />
        </div>
    
    <style>
        .e-clear-date {
            text-align: center;
            position: absolute;
            right: 24px;
            top: 0;
            line-height: 2;
            background: #ececec;
            width: 21px !important;
            height: 28px !important;
            margin-top: -14px !important;
        }
    
        .e-clear-date:hover {
           background: #86cbea;
           cursor: pointer;
        }
    
        .e-clear-date:before {
           content: "\e605";
           font-size: 16px;
           line-height: 1.8;
       }
    </style>
  • JAVASCRIPT
  • function onCreate(e) {
            if (this.innerWrapper.find('.e-clear-date').length == 0) {
                this.innerWrapper.append("<span class='e-clear-date e-icon'></span>"); // create and append the 'div' element to the calendar
                this._on($('.e-clear-date', this.innerWrapper), "click", function () { this.option('value', null); if (!this.model.displayInline) this.hide(); }); // bind the 'Click' event to that 'div' element
            }
        }

    How to integrate with bootstrap grid system?

    DatePicker is responsive control, you have to just set the input element width as 100%. In Bootstrap grid layout use the below code example to get responsive textbox.

  • JAVASCRIPT
  • $(function () {
    
                // creates DatePicker from input
    
                $("#datePicker").ejDatePicker({
    
                    width: '100%'// sets width as 100 percentage
    
                });
    
            });

    How to use DatePicker in AngularJS?

    You can use DatePicker control in AngularJS Framework. To know more about JS component with AngularJS refer here JS component in AngularJS.