Friday 23rd April, 2021

Editor 2.0.2 release notes

Editor 2.0.2 addresses a few issues which have come to light since the 2.x series was released, specifically addressing an error with the options in the datatable field type and a few other issues. Please see the full notes below for details.

Additionally, refer to the 2.0.0 release notes for full details of the changes in Editor 2.

Downloads

Downloads of specific versions of Editor are only available to license holders. Please see the download page for information about the current release version.

Release notes

JS Core

  • New: footer option for datatable field type
  • Fix: field().update() should return the Field instance as documented
  • Fix: Bootstrap 5 better styling for select elements. Thank you Marian for this tip
  • Fix: datatable wasn't correctly removing records when updated with field().update().
  • Fix: Inline editing for standalone editing threw a Javascript error
  • Fix: When wireFormat was used for a datetime input, and no default or value was given, then "Invalid date" would be shown.

.NET

  • New: When using compound keys, you can now set the value with Field.SetValue() to allow for server-side computed values, as well as submitting it from the client-side.
  • Fix: Formatters could potentially result in an unknown object error if used with a null value
  • Fix: Bump System.Text.Encodings.Web

NodeJS

  • New: When using compound keys, you can now set the value with Field.setValue() to allow for server-side computed values, as well as submitting it from the client-side.

PHP

  • Fix: SQL aliased tables would result in being unable to delete rows

Docs

  • Fix - docs: datatable didn't document the editor.field().dt() method

Examples

  • Fix: Add create validator for compound key example (PHP, Node, .NET)