Another round of updates based on your feedback. Some new functionality has been added and I have fixed a few bugs in the overriding of the buttons and menus in the list view to ensure the modern DFFS form is opened and not the out-of-the-box SharePoint form.
I’ll post some examples on Custom JS for this new version later this week.
Most Custom JS created for the classic DFFS will unfortunately not work, but setFieldValue and getFieldValue will. Use it like this:
// Set the Title field
setFieldValue("Title", "The title field value");
// Set a date field 14 days ahead of today
let date = new Date();
date.setDate(date.getDate() + 14);
setFieldValue("DateAndTime", date);
Please post any feedback below or email me if you cannot post in the forum.
Alexander