Hi Brandon,
Greetings from Syncfusion Support.
We have achieved your requirement “want my custom element at left and the date selector at right, just before my buttons start.” by making use of actionBegin event of our scheduler with the below code. You can refer the sample from the following link.
onActionBegin(args) {
if (args.requestType === 'toolbarItemRendering') {
let userIconItem = {
align: 'Left',
template: document.querySelector('#viewDropDown'),
};
args.items.push(userIconItem);
// Move date selector's at right
args.items[0].align = 'Right';
args.items[1].align = 'Right';
args.items[2].align = 'Right';
// align custom element at left
args.items.unshift(args.items.pop());
}
}
Output:
Kindly try with the above sample and get back to us if you need any further assistance.
Regards,
Vinitha