Rinat G.
Rinat G.
I can't reproduce this error. ``` // after var days = Math.ceil((opt.end - opt.start) / 86400000) + 1; ` // added console.log(days, opt.maxDays); ``` It's always show as expected. ("30,...
_just for information (I see topic is old)_ I have added as option, see demo `Re-select option` https://wakirin.github.io/jquery-date-range-picker/ update available on npm `npm i @waki/jquery-date-range-picker`
The `native` option is undocumented yet, I added this option just as an experiment.
It's updated ?
Now it's not beta.
You could do it with [easepick](https://easepick.com/examples/days-with-prices) https://jsfiddle.net/waki/3uza5ys1/
Currently you can do something like this: https://jsfiddle.net/e8vg47nu/ In the next release I will fix it.
Currently not supported. Perhaps it will be like a plugin later.
Nice idea, perhaps it will be included to mobilefriendly plugin.
```js easepick.create.prototype.popperInstance = null; easepick.create.prototype.show = function(e) { this.ui.container.classList.add('show'); if (this.popperInstance) { this.popperInstance.update(); return; } this.popperInstance = Popper.createPopper(this.options.element, this.ui.container); } const picker = new easepick.create({ element: document.getElementById('datepicker'), css: [ 'https://cdn.jsdelivr.net/npm/@easepick/[email protected]/dist/index.css',...