Search found 11 matches

"Drag between Schedulers Angular demo" sample.
I can drag an event from scheduler 2 to scheduler 1: ok.
How can i drag multiple events from scheduler 2 to scheduler 1?
Perfect. Thank you.
I adapted your example to my code and it works. Thank you! After that, in my customization, i have to show tooltip buttons - without record name at start of tooltip "toolbar" - and without text under tooltip "toolbar". I tried to hide text under toolbar returning empty string in ...
Scheduler component "Ext-js " has the function "visibleFn" to manage visibility of tool as f(event).
How to implement this in "Javascript pure" Scheduler?
I have to handle a more complex situation: different styles for resource row (selected style 1, unselected style 2) and event row (style 3, style 4), different styles for elements inside the resource row etc ... In any case, I solved the problem this way: - I save, on the selectionchange events, the...
Hi. My case is (Angular 7): A) User select one or more resources on scheduler B) I have to highlight - change background color (adding - removing css classes) of the grid rows of selected resources AND of the grid rows of events of selected resources. In plain javascript it's ok: - i get the selecte...
Good solution. I'll do it this way. Thank you.
In the event I have to show a calculated value, which depends on the data in the event, but it also depends on a parameter that the user can modify. If the user changes the parameter, I should show the "new" calculated value; since the underlying data does not change, the scheduler correct...
In Extjs version there is a method "getSchedulingView().repaintAllEvents()" for this.
In plain Javascript version?
Done. But I still can't get a reference a PresetManager reference In ExtJs Scheduler, PresentManager is a "static" reference => ok In "plain" Javascript, i use bryntum.scheduler.PresetManager.registerPreset(... , => ok In Angular, PresetManager is undefined as "static" ...