The rowCreateHtml property (string) specifies the raw HTML displayed as a placeholder in the new row during row creating.
Declaration
DayPilot.Scheduler.rowCreateHtmlDefault Value
nullNotes
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot