jdtcn / BlazorDateRangePicker

A Blazor component for choosing date ranges and dates
MIT License
182 stars 35 forks source link

add Propertie "yearShowLeft" #83

Open codema2015 opened 1 year ago

codema2015 commented 1 year ago

if "yearShowLeft" is true,then year Dropdowns will show in left, like

datepicker

jdtcn commented 1 year ago

Hi, you can achieve this with pure css:

th.month {
    direction: rtl;
}

.monthselect,
.yearselect {
    direction: ltr;
    display: table-cell;
}