Our pure JavaScript Scheduler component
Hi,
which the right setting for view all days?
Now the days are hidden.... why?
P01.png (6.2 KiB) Viewed 189 times
This is my code:
// Configuration scheduler
const schedulerConfig: Partial<SchedulerConfig> = {
viewPreset: 'hoursAndDay',
startDate: new Date(),
endDate: getDate(),
crudManager: {
loadUrl: "api/schedulerdata",
autoLoad: true,
resourceStore: {
startGroupsCollapsed: true
}
},
columns: [
{ text: 'Nome', field: 'name', width: 180 },
{ text: 'Ufficio', field: 'role', width: 200 }
],
autoHeight: true,
features: {
group: {
field: 'role',
},
timeRanges: {
showCurrentTimeLine: true,
showHeaderElements: true,
enableResizing: true
},
headerZoom: true
}
};
Thanks!
Hi,
I'm try but same error:
P01.png (11.29 KiB) Viewed 178 times
if zoom it and unzoom the blue color is only over current year...
Hey mirco.damiani,
I added your code to the demo Alex mentioned and didn't get the result that you're mentioning.
const scheduler = new Scheduler({
appendTo : 'container',
resourceImagePath : '../_shared/images/users/',
features : {
stripe : true,
sort : 'name'
},
columns : [
{
type : 'resourceInfo',
text : 'Staff',
width : '10em'
}
],
resources,
eventStore : {
modelClass : EventModelWithPercent,
data : events
},
columns: [
{ text: 'Nome', field: 'name', width: 180 },
{ text: 'Ufficio', field: 'role', width: 200 }
],
autoHeight: true,
features: {
group: {
field: 'role',
},
timeRanges: {
showCurrentTimeLine: true,
showHeaderElements: true,
enableResizing: true
},
headerZoom: true
}
});
Could you please share a runnable test case with a data sample you're using in the screenshots you shared? Please check our guidelines for more information https://www.bryntum.com/forum/viewtopic.php?f=1&t=772 .
Attachments
Screenshot 2024-08-02 at 12.34.57.png (478.81 KiB) Viewed 164 times