DayPilot.Scheduler.rowCreateHtml

The rowCreateHtml property (string) specifies the raw HTML displayed as a placeholder in the new row during row creating.

Declaration

DayPilot.Scheduler.rowCreateHtml

Default Value

null

Notes

If specified this value overrides rowCreateText.

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  rowCreateHtml: "<strong>New resource...</strong>",
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  rowCreateHtml: "<strong>New resource...</strong>",
  // ...
};

React

<DayPilotScheduler
  rowCreateHtml={"<strong>New resource...</strong>"}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  rowCreateHtml="<strong>New resource...</strong>"
  <!-- ... -->
/>

See Also

Row Creating [doc.daypilot.org]

DayPilot.Scheduler.rowCreateText

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript