Giter Club home page Giter Club logo

Comments (4)

randallmeeker avatar randallmeeker commented on August 23, 2024

That's no good at all. I will look into it, or if you want to create a PR that would be fine as well.

from ps-input-time.

morriq avatar morriq commented on August 23, 2024

👍

I can't dive in logical part but there is workaround fast for it:

else if (checkTimeFormat(element.val()) != 'invalid') { ... }

overwrite with:

else if (checkTimeFormat(element.val()) != 'invalid') {return true}

and

if (!verified) { element.val(formatter(ngModel.$modelValue)); }

overwrite with

if (!verified) {
                    var caret = element.prop("selectionStart");

                    var beforeValue = formatter(ngModel.$modelValue);
                    var afterValue  = element.val();

                    var changedValue = replaceAt(beforeValue, caret - 1, afterValue[caret - 1]);
                    var hours   = Math.min(changedValue.split(/[;:]/)[0], 23);
                    var minutes = Math.min(changedValue.split(/[;:]/)[1], 59);

                    var tmpDate = new Date(ngModel.$modelValue.getTime());
                    tmpDate.setHours(hours);
                    tmpDate.setMinutes(minutes);

                    if (!isNaN(tmpDate.getTime())) {
                        ngModel.$setViewValue(tmpDate);
                    } else {
                        --caret;
                    }
                    element.val(formatter(ngModel.$modelValue));
                    // skip : char
                    if (caret === 2) {
                        element[0].setSelectionRange(3, 5);
                    } else {
                        element[0].setSelectionRange(caret, caret + 1);
                    }
                    return false;
                }

from ps-input-time.

morriq avatar morriq commented on August 23, 2024

@thecyberd3m0n and you have wrong format. you should set HH:mm instead of hh:mm

from ps-input-time.

giacomomasseron avatar giacomomasseron commented on August 23, 2024

Same problem here.

from ps-input-time.

Related Issues (5)

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.