jdtcn / BlazorDateRangePicker

A Blazor component for choosing date ranges and dates
MIT License
186 stars 34 forks source link

How we can hide Previous Month dates in 1 month calendar? #46

Closed anjan-cele closed 3 years ago

anjan-cele commented 3 years ago

How we can hide Previous Month dates in 1 month calendar.

image

jdtcn commented 3 years ago

Hi, there are at least two options:

  1. Using css

    .ends {
    visibility: hidden;
    }
  2. Using custom day layout: https://blazordaterangepicker.azurewebsites.net/customDay

Don't forget to override empty cells behavior with https://blazordaterangepicker.azurewebsites.net/customClickHandler

anjan-cele commented 3 years ago

Yes it worked. Thanks a lot. Nice Plugin :)