The rowCreateHtml property (string) specifies the raw HTML displayed as a placeholder in the new row during row creating.
DayPilot.Scheduler.rowCreateHtmlnullIf specified this value overrides rowCreateText.
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>"
<!-- ... -->
/>Row Creating [doc.daypilot.org]