DayPilot.Scheduler.eventEditMinWidth

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.eventEditMinWidth

Default Value

100

Examples

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]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript