Our powerful JS Calendar component


Post by vconstruct »

Hi team,

Here in the following snap shot you could see that after clicking on +more we could see all the resources that are associated to that date in the popup but can we change it in a way that only hidden resources show up

popup.png
popup.png (210.16 KiB) Viewed 113 times

For example can we show the 2 resources that are hidden not all the five in the popup


Post by tasnim »

Hi,

You could achieve it by setting https://bryntum.com/products/calendar/docs/api/Calendar/widget/OverflowPopup#config-onlyShowOverflow to true inside https://bryntum.com/products/calendar/docs/api/Calendar/widget/MonthView#config-overflowPopup

     modes : {
        month : {
            overflowPopup : {
                onlyShowOverflow : true
            }
        }
    },

And here is the output

Attachments
Screenshot 2023-05-29 134238.png
Screenshot 2023-05-29 134238.png (14.44 KiB) Viewed 109 times

Post Reply