Anil Thakur
Anil Thakur

Reputation: 1

Show only week days no next prev months years and days

I am using jquery-week-calendar. Its integrated without any issue but now my requirement is to only use "Week Days" not month and year with next previous options.

I want to have week days only i.e "Monday, Tuesday,... Sunday" on the top side and "hours" on the left side.

So when I click on any slot to enter my todo I just only see Hour and day.

This is the demo url.

Thanks.

Upvotes: 0

Views: 148

Answers (1)

vijayP
vijayP

Reputation: 11502

Can its ok to hide them with CSS. If yes then you can hide those controls via following code:

.wc-nav{
    display: none;
}

Upvotes: 0

Related Questions