How to highlight today in scheduler component?

is it possible to change the slot background or style of day text in monthview ?

Hi @Satroki,

At the moment this isn't possible. We will add support for this in some of the future releases.

Hi @korchev,

any news about this?

thanks in advance,
Andrea

No, there is no new development in this regard. This feature is still not implemented.

We would appreciate this too.

We are looking forward to having this feature as well.

Any update on this feature?

The online demo shows how to do that.

    void OnSlotRender(SchedulerSlotRenderEventArgs args) 
    {
        // Highlight today in month view
        if (args.View.Text == "Month" && args.Start.Date == DateTime.Today)
        {
            args.Attributes["style"] = "background: rgba(255,220,40,.2);";
        }
    }