BlazorDateRangePicker icon indicating copy to clipboard operation
BlazorDateRangePicker copied to clipboard

add Propertie "yearShowLeft"

Open codema2015 opened this issue 3 years ago • 1 comments

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

datepicker

codema2015 avatar Jan 09 '23 13:01 codema2015

Hi, you can achieve this with pure css:

th.month {
    direction: rtl;
}

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

jdtcn avatar Aug 22 '23 19:08 jdtcn