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.
Declaration
DayPilot.Scheduler.eventEditMinWidthDefault Value
100Examples
JavaScript
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"
<!-- ... -->
/>See Also
Inline Event Editing [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot