DisableDates in date calendar

hi, i tried to use disabledates to exclude weekend from manual,but i have an error

fd.spRendered(function () {
    function Termen() {
        fd.field('Data_x0020_document').widgetOptions = {
            max: new Date(),
            disableDates: ["S","D"],
        }
    }
    fd.field('Tip_x0020_document').$on('change', Termen);
});


image
Am i right when select weekend as S and D?

Dear @ixxxl ,
Please, try the following instead:

fd.spRendered(function() {
    fd.field('Data_x0020_document').widgetOptions = {
        disableDates: ["sat", "sun"],
    }
});

tryed,
image

Dear @ixxxl,
Have you copied and pasted all of my code, or just a part of it? It needs to be copied fully.

Please, also remove/comment out any other code you might have on the form, at least while testing.



maybe it is because i use romanian language on my site

Dear @ixxxl,
Unlikely, though everything is possible. Are you sure the Name of the field is correct?

What's the version of the widget/web part in browser's Sources?
image

@Nikita_Kurguzov
image

Dear @ixxxl,
Okay, I see! The issue is that you're running SharePoint 2019 version, and Kendo DatePicker control simply wasn't updated yet.

The code should work after the next update is released - and the update is scheduled for late March, please, stay tuned!

1 Like

@Nikita_Kurguzov
Thank you,
one more question, after update plumsail forms i must republish all my forms on all sites? i see somewhere information, but can't find now...

Dear @ixxxl,
No, usually nothing like this. Depends on the specific update on how it goes - sometimes forms might need to be re-saved in order to get new functionality, but that's about it.

1 Like