Giter Site home page Giter Site logo

pingcheng / bootstrap4-datetimepicker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from eonasdan/tempus-dominus

184.0 184.0 114.0 3.42 MB

datetimepicker for bootstrap 4

Home Page: http://eonasdan.github.io/bootstrap-datetimepicker/

License: MIT License

JavaScript 71.63% CSS 23.80% PowerShell 0.22% HTML 4.35%
bootstrap4 bs4 datetimepicker

bootstrap4-datetimepicker's People

Contributors

ankurk91 avatar brendanebers avatar caponica avatar csnauwaert avatar davidrojo avatar eonasdan avatar howbazaar avatar ilyes512 avatar jci-jnewell avatar jeremyvignelles avatar joelkraft avatar liamsmith57 avatar lizstarin avatar mcarepa avatar neocotic avatar nervo avatar nikoskalogridis avatar pingcheng avatar rodolfosilva avatar smmoosavi avatar snarehanger avatar suy avatar tarruda avatar thinkscape avatar timblack1 avatar trevors avatar tschiela avatar ttmelki avatar williewheeler avatar zpaulovics avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bootstrap4-datetimepicker's Issues

Updated release

Hi,

It's been 21 months since the 4.17.50 release so is there any chance you'll be doing a release in the near future which incorporates the commits since the last release and the changes listed in Issues 9, 13 and 15 and Pull Request 10?

Les

A proposal to change styles for the new versions of Font-Awesome 5

In Font Awesome 5 there are two versions - Web Fonts & CSS and SVG & JS. For the first version of a datetimepicker shows icons without bugs. I use the second version (SVG & JS). Its working principle is that <svg> elements are used instead of <i>. Because of this, it turns out a style bug that when you select the area of the icon it is not highlighted. I propose to fix this problem by making changes to the _bootstrap-datetimepicker file.scss:

For all span, i { change to span, i, svg {.

Animation during clock and date switch

Hello!

The widget in my project is working except the animated switch. Do you have any idea, what the problem could be? Are they still supported?

Thank you

Table overflowing while selecting time

My datetimepicker is inside a td.
While selecting the time, the table is overflowing like this
image

Setting min-width fixed this :
.bootstrap-datetimepicker-widget { min-width: 326px; }

Urgent ! Need an Immediate Solution ! DateTime Picker Not Woking

Hi,

I am currently working in Dashboad, and i am using your datetime picker only. but when i click the datetimepicker its triggering and i can find the triggering DOM Elements in inspect but not showing in UI. Currently I am using Bootstrap 4 and implementing in Angular 2 and all my applications are latest versions.

Incorrect tooltip for calendar icon in timepicker

When inside the timepicker, hovering over the calendar icon displays the tooltip Select Time instead of Select Date.

bootstrap3-datetimepicker is same bug.
Eonasdan#1542

Add the tooltip selectDate on the defaults value 'Select Date'
Then on the togglePicker function replace it with this code:

Add the variable $link.

togglePicker: function (e) {
    var $this = $(e.target),
        $link = $this.closest('a'),
        $parent = $this.closest('ul'),
        expanded = $parent.find('.show'),
        closed = $parent.find('.collapse:not(.show)'),
        collapseData;

    if (expanded && expanded.length) {
        collapseData = expanded.data('collapse');
        if (collapseData && collapseData.transitioning) {
            return;
        }
        if (expanded.collapse) { // if collapse plugin is available through bootstrap.js then use it
            expanded.collapse('hide');
            closed.collapse('show');
        } else { // otherwise just toggle in class on the two views
            expanded.removeClass('show');
            closed.addClass('show');
        }
        if ($this.is('i')) {
            $this.toggleClass(options.icons.time + ' ' + options.icons.date);
            if ($this.hasClass(options.icons.date)) {
                $link.attr('title', options.tooltips.selectDate);
            } else {
                $link.attr('title', options.tooltips.selectTime);
            }
        } else {
            $this.find('i').toggleClass(options.icons.time + ' ' + options.icons.date);
            if ($this.find('i').hasClass(options.icons.date)) {
                $link.attr('title', options.tooltips.selectDate);
            } else {
                $link.attr('title', options.tooltips.selectTime);
            }
        }

        // NOTE: uncomment if toggled state will be restored in show()
        //if (component) {
        //    component.find('span').toggleClass(options.icons.time + ' ' + options.icons.date);
        //}
    }
},

showing startDate and time.

i am using this directive for datepicker.

<date-picker v-model="date" :config="options"></date-picker>

i am gonna to get date, when user clicks random day(not today).
in this case, how can i get this date?

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.