v0.9.0.10 has been published

Forums Modern DFFS v0.9.0.10 has been published

Viewing 1 reply thread
  • Author
    Posts
    • #36135
      Alexander Bautz
      Keymaster

      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

    • #36149
      Alexander Bautz
      Keymaster

      Known bug in this version:
      When clicking the New button in a list view, the form sometimes open two times (two panels – one on top of the other) – this causes some issues with for example checkboxes not responding.

      Alexander

Viewing 1 reply thread
  • You must be logged in to reply to this topic.