Giter VIP home page Giter VIP logo

Comments (4)

nazar-pc avatar nazar-pc commented on August 28, 2024

There is no such possibility out of the box if you want it straightforward.
However, you can try one of two workarounds:

  1. Modify option directly on instance like $('...').data('pickmeup-options').mix = whatever
  2. Another way is to handle render event and return {disabled: true} when you need so

Second is preferable.

from pickmeup.

conmute avatar conmute commented on August 28, 2024

Ok. Can you suggest how you want me to do that exactly.

$('.date_picker').pickmeup({min: new Date()});

minDate = new Date()
minDate.setMonth maxDate.getMonth() + 2

$('.date_picker').data('pickmeup-options').date = whatever
Yet we need to launch redraw somehow, so i need to update. And $('.date_picker').pickmeup('update') is just screws all up.

How to work with render events, (this one launches on EACH day that is drawn), there is also no description.

I like this solution. Would be great to improve it.

from pickmeup.

nazar-pc avatar nazar-pc commented on August 28, 2024

render event will be called on each single day (and month, year depending on view), so you can handle it like this:

var element = $(...).pickmeup({
    ...
    render : function (current_date) {
        if (current_date < min_date || current_date > max_date) {
            return {disabled: true};
        }
    }
});

In this case current_date, min_date and max_date are assumed to be regular Date JS objects.

Then call element.pickmeup('update') any time you change min/max dates.

Well, there was some bugs with update method when using flat: true instance, now it is fixed in PickMeUp 2.6.3, thanks for this!

Here is simple demo for you to show what I explained above: http://jsfiddle.net/z4fmvuzb/30/

Another way (hacking internal options of PickMeUp) is not recommended, it might be buggy, while this case is simple and documented.

from pickmeup.

techgeeksquared avatar techgeeksquared commented on August 28, 2024

@nazar-pc Perfect, thank you.

from pickmeup.

Related Issues (20)

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.