Page 1 of 1

[REACT] How can we show only hidden resources on the popup

Posted: Mon May 29, 2023 9:05 am
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 161 times

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


Re: [REACT] How can we show only hidden resources on the popup

Posted: Mon May 29, 2023 9:43 am
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