How can I customize the description rendering for different agenda lists views, specifically for the month list, day list, and week list? I’ve attempted to use the description renderer function, but it only changes the description uniformly across all three lists.
You can conditionally return the specific values from the description renderer based on the range unit values i.e. for day agenda view, for week agenda view... You can get the current agenda view unit value by doing this.range.unit in the description renderer and for visible events count, you can try this.eventCount and all should be working. Can you please try this and let us know if this helps.
"Thank you so much, Ghulam and Aniaml. Your suggestion worked perfectly! By using the switch cases with this.range.unit(view._range.unit), I was able to achieve the different descriptions needed for the various views in agenda mode."