Sergey

Results 23 comments of Sergey

Hi, please check if the css styles for the component are loaded, the component uses [css and js isolation](https://learn.microsoft.com/en-us/aspnet/core/blazor/components/css-isolation), you need to make sure the isolated styles are connected: ```razor...

I advise you to look how it is implemented in test projects, if it still does not work for you, please create an empty project reproducing the problem and send...

This behavior is by design (and in the original JavaScript component as well). In my implementation, there's a line in `~\BlazorDateRangePicker\DateRangePicker.razor.cs:270` that sets `AutoApply` to `false` if `TimePicker` is enabled:...

Hi, I have added the `OnStartTimeChanged` and `OnEndTimeChanged` events

Hi, you shouldn't add the link to `clickAndPositionHandler.js` manually, asp.net should load this module [by itself](https://learn.microsoft.com/en-us/aspnet/core/blazor/components/css-isolation)

Hi, I think this is possible, please share a code snippet, I will try to implement it

Hi, here is one option of how this can be achieved, I used `data-bs-auto-close="false"` to prevent dropdown from closing and trigger dropdown close from the `OnClosed` event. In general, I...

Hi, you can achieve this with pure css: ```css th.month { direction: rtl; } .monthselect, .yearselect { direction: ltr; display: table-cell; } ```

Hello, please describe in more detail what you want to achieve. Implementation of `DaysEnabledFunction` can be anything you want