Page 1 of 1

[ANGULAR] Hide week numbers on month view

Posted: Thu Feb 18, 2021 9:40 am
by ducminh1511

Hello friends,

I have an issue, how can I hide the week number shown to the left of the month view


Re: [ANGULAR] Hide week numbers on month view

Posted: Thu Feb 18, 2021 9:56 am
by mats

Re: [ANGULAR] Hide week numbers on month view

Posted: Thu Feb 18, 2021 2:23 pm
by ducminh1511

Hi mats,

I tried your way, but it doesn't work


Re: [ANGULAR] Hide week numbers on month view

Posted: Thu Feb 18, 2021 2:47 pm
by Animal

Just uses CSS:

.b-monthview .b-week-num {
    display: none;
}

Re: [ANGULAR] Hide week numbers on month view

Posted: Thu Feb 18, 2021 2:53 pm
by Animal

It is actually useful though.

You know clicking on it takes you to that week in the WeekView mode.


Re: [ANGULAR] Hide week numbers on month view

Posted: Thu Feb 18, 2021 2:57 pm
by Animal

Maybe having the weeks number in a separate column would suit you more?

Screenshot 2021-02-18 at 13.54.13.png
Screenshot 2021-02-18 at 13.54.13.png (34.66 KiB) Viewed 1196 times

That doc links in a previous post. You see that the config is not a config of the Calendar. It's a config of the child month view.

Maybe this would look nicer for you:

modes : {
    month : {
        showWeekColumn : true
    }
}

Re: [ANGULAR] Hide week numbers on month view

Posted: Thu Feb 18, 2021 3:00 pm
by ducminh1511

Thank you, it worked