Awesome, thank you again for your great and fast replies.
Support Forum
Good morning!
Wow, that example really looks similar and would be helpful to start out.
Yesterday I communicated to the project team that the Schedular and Calendar (we also have a Calendar view in our application) licences will probably be the best fit for our application requirements.
Mats, because you mentioned Schedular Pro - is the Pro version necessary for using this template to start with or will it be provided for the normal Schedular as well?
ghulam.ghous mentioned in one of the previous comments that the normal Schedular is capable to implement all needed features (read-only), so I think the Schedular PRO would be too extensive for our needs, or am I wrong?
Thank you for the great help. Im really looking forward to start implementing
Glad you like it You could use the new template with the basic too. Though the sample source will be part of Pro, you can just copy it over to the basic Scheduler and adjust it. Regarding licensing, are you building a commercial / SaaS or is this for internal use at your company? Feel free to reach out to sales@bryntum.com if you want to discuss your licensing requirements.
Thanks - that are good news! If this is possible we will go with the approach, mentioned above.
For now I have just one/two more question: You mentioned that the GA version will probably be released in approximately 2 weeks, but that we can use for now the 6.2.0-alpha-3 version. Is the sample source already available, so that we can start using the template (after purchase) right away, or would we need to wait until the GA version will be released?
Is the 6.2.0-alpha-3 version accessible through trial or after purchase?
Regarding the license version, the customer with whom we maintain contact will reach out. Thank you for providing the email address.
For now I have just one/two more question: You mentioned that the GA version will probably be released in approximately 2 weeks, but that we can use for now the 6.2.0-alpha-3 version. Is the sample source already available, so that we can start using the template (after purchase) right away, or would we need to wait until the GA version will be released?
This will be merged to the 6.2 branch shortly so as soon as you have the license you can download a nightly build to start coding.
Is the 6.2.0-alpha-3 version accessible through trial or after purchase?
Only after purchase.
Regarding the license version, the customer with whom we maintain contact will reach out. Thank you for providing the email address.
Sounds good!
Got it! Thank you very much.
Regarding the TreeSummary functionality: In the screenshot there is currently a tooltip if the user hovers over a specific cell.
So I guess its also possible to include a click-handler (in our case to display the specific list of events in a pop-up through sending a call to the backend) that fires when the user clicks on a tree-view cell?
F.e.: Define onClick instead of onHide --> would this result in Angular in an (click) event?
Yes sure, you could also add a click listener to react to clicks on summary cells. You'd listen to the main element and use event delegation for targets matching .b-sch-event-parent.b-sch-tick-summary-cell
. On the element, you will find information about the row id, and you can find the date from https://bryntum.com/products/schedulerpro/docs/api/Scheduler/view/mixin/TimelineDateMapper#function-getDateFromDomEvent
Hope this helps!