jQWidgets Forums
jQuery UI Widgets › Forums › Scheduler › all day area occupies all the space in weekView
Tagged: calendar, scheduler, scheduling component
This topic contains 6 replies, has 3 voices, and was last updated by alinungurean 4 years, 5 months ago.
-
Author
-
when there are many all day events, the all day area occupies all the space and the second section with non-allDay appointments is not visiblle or reacheable by scrolling.
Here is the fiddle https://jsfiddle.net/uj1atzns/
Hello alinungurean,
These are a lot of items.
Also, if there is not enough space the appointments cannot be visualized.
TheweekView
maybe is not appropriate for this case and you could try some of the other views.
Please, take a look at this example:
https://jsfiddle.net/ygeqh8tL/
One more thing, I saw there that you set the boolean value with string and could be confusing (!!"false" == true
).Best Regards,
Hristo HristovjQWidgets team
https://www.jqwidgets.comHi,
and there will never be enough space for all data to fit on the screen. How is this supposed to be used in real world with big data?
In week view, week timeline, month timeline big height means scrolling down the page and then the calendar header gets out of sight and so you are looking at the appointments and understand nothing about their placement in time. This is very unpractical.
So how do we solve this?
Hi,
To disable the default auto height of the all day row, you can use the rowHeight and allDayRowHeight properties of your “weekView” object.
Example:
{ allDayRowHeight : 50, rowHeight: 40, showAllDayRow: true, type:”weekView”, timeRuler: { formatString: “HH:mm” }, showWorkTime: false }
Best Regards,
Peter StoevjQWidgets team
https://www.jqwidgets.comI”ve updated the fiddle, https://jsfiddle.net/p439bj5e/. No whow can I enable the scroll to see all the appointments in the all day area?
Hi alinungurean,
Scrolling in the all day area is not possible. We will consider adding such option for our next major release which is expected in the middle of December.
Best Regards,
Peter StoevjQWidgets team
https://www.jqwidgets.comThanks,
in the meantime I have found a workaround by settings a fixed height by
allDayRowHeight
, enabling the scrolldiv[id^='contenttable2']{ overflow-y: auto !important; background-color:white; border-bottom: ridge;}
and removing unused tr[id^='contenttable2'] table>tbody>tr
. It looks like it does the trick. -
AuthorPosts
You must be logged in to reply to this topic.