The eventEditMinWidth property (number) specifies the minimum width, in pixels, of the edit input box used during inline event editing.
If the event is narrower than this value, the Scheduler expands the input box to the specified minimum width.
DayPilot.Scheduler.eventEditMinWidth100JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventEditMinWidth: 200,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventEditMinWidth: 200,
// ...
};React
<DayPilotScheduler
eventEditMinWidth={200}
{/* ... */}
/>Vue
<DayPilotScheduler
:eventEditMinWidth="200"
<!-- ... -->
/>Inline Event Editing [doc.daypilot.org]