Hello Bryntum Team,
Is it possible to change the Name field type from Text to Drop Down, so that we can select values from existing value set?
It's s simple as this: https://codepen.io/Animal-Nige/pen/MWMjgNw?editors=0010
Hello Animal,
Yes, This thread is about a Work Around I was thinking of, which I'll try.
The Reason why I want to use Custom Component is because of
(a) field complexity (Cascading Drop-Down through multiple Server Side callout) on the Edit form, and
(b) Lightning Web Security by which the Performance can be affected.
Thanks & Regards,
Sourav Saha
There's a whole docs section about replacing the event editor: https://bryntum.com/products/calendar/docs/guide/Calendar/customization/replaceeventedit
The key is returning false
from a beforeEventEdit
event listener to inhibit the native edit from taking place,
From then on you are on your own. Kick off your own editing from that handler.
But cascading combos are reasonably easy using the provided widgets. Easier than all other places I have seen it tried.