We are trying to use the resource grouping feature in the Bryntum Calendar. Everything seems to work fine when the sidebar is visible. However, once we hide the sidebar, an extra unnamed column appears in the calendar view.
How can we remove this additional column when the sidebar is hidden?
Also, is it possible to customize the column header using HTML or a component?
<BryntumCalendar
modes={{
dayresource: {
hideNonWorkingDays: false,
// Configure a nice min-width for the resource columns
minResourceWidth: '10em',
// Demo uses more padding than default, switch to the short event duration "earlier" to fit contents
shortEventDuration: '1 hour',
},
}}
// sidebar={false}
sidebar={{
items: {
resourceFilter: {
minHeight: '22em',
store: {
// Group resources by a custom `team` field
groupers: [{ field: 'groupBy', ascending: true }],
},
// initially select record team members of the Austin team
selected: [1, 2],
},
},
}}
tbar={null}
bbar={null}
events={events}
resources={resources}
resourceStore={{
groupers: [{ field: 'groupBy', ascending: true }],
}}
// ...
/>
Thanks in advance for your help!