Hide Date row in kendo scheduler when grouping is used

1 Answer 202 Views
Scheduler
Varinder
Top achievements
Rank 1
Iron
Varinder asked on 27 Apr 2023, 02:30 PM

Hi,

I want to hide the date row in the scheduler when grouping is used. How can I achieve this?

1 Answer, 1 is accepted

Sort by
1
Accepted
Martin
Telerik team
answered on 02 May 2023, 08:45 AM

Hello, Varinder,

A possible approach would be to use the code below in the dataBound event:

dataBound: function() {
          $(".k-scheduler-layout tr:first .k-scheduler-table")
            .not(".k-scheduler-header-all-day")
            .find("tr:first")
            .hide();
        }

Here is a small example for reference.

Let me know how that works for you.

Regards,
Martin
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Varinder
Top achievements
Rank 1
Iron
commented on 02 May 2023, 11:20 AM

Hi, Martin thanks for the update. The example link is broken. Can you please check once?
Martin
Telerik team
commented on 05 May 2023, 08:21 AM

Tags
Scheduler
Asked by
Varinder
Top achievements
Rank 1
Iron
Answers by
Martin
Telerik team
Share this question
or