Search found 8 matches

Thank you Maxim.

I should read the README first :D

Hi,

When I use multiple scheduler instances in Salesforce LWC, I only can work on the last initialised instance.
Please check the screen-shot video in this link https://gofile.io/d/175rR5 for details.

Thank you for your help.

Problem resolved after I switch the version back to 4.0.2

BTW, I'm using the version 4.0.6

during the inspect, the "time header" show up when I change the css class: .b-sch-header-row

from

.b-sch-header-row {
    position: relative;
    contain: strict;
}

to

.b-sch-header-row {
    /* position: relative; */
    /* contain: strict; */
}
When I inspect on the "time header", I can see the content in the html source code: <div class="b-sch-header-timeaxis-cell b-sch-dayheadercell-0" data-tick-index="0" style="left: 0px; width: 1200px; min-width: 1200px;" c-schedulercomponent_schedulercomponent=&...
I'm using the scheduler.stockholm.min.css renderedCallback() { if (this.schedulerInitialized) { return; } Promise.all([ loadScript(this, SCHEDULER + "/scheduler.lwc.module.js"), loadStyle(this, SCHEDULER + "/scheduler.stockholm.min.css") ]).then(() => { this.createScheduler(); th...
code: bryntum.scheduler.init(this.template); this.scheduler = new bryntum.scheduler.Scheduler({ appendTo : this.template.querySelector('.container'), autoHeight : true, startDate : new Date(2018, 4, 6), endDate : new Date(2018, 4, 8), columns : [ { field : 'name', text : 'Name', width : 100 } ], vie...