DatePicker - miniumum date

Hi
Is it somehow possible to set a minimum date in the datepicker, i.e. do not allow older dates than today.
Would be great to see this feature.
Thanks

Hi @robi26,

Not possible at the moment - I've logged your request.

Hi, is there an update related to this?

I'm interested in this as well.
For now I disable to older (and too new dates):

    private void DateRender(DateRenderEventArgs args)
    {
        if (args.Date.Date.Equals(DateTime.Today))
        {
            // Change the appearance because else it looks like today is selected:
            args.Attributes.Add("style", "background-color: #ff6d41; border-color: none; border-radius: 50%;");
        }

        if (args.Date.Date < StartTime.Date) args.Disabled = true;
        if (args.Date.Date > EndTime.Date) args.Disabled = true;
    }