Child pages
  • 2020.06 Whats new

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Servoy Default (legacy) components are now depricated and not shown by default. These components are only shown when the form already has some of these components,
or in the preferences under Default Packages the checkbox "Show always default/legacy servoy components in designer (if enabled above)" is checked.

A warning is not now generated if you use none valid names for forms or components in the solution model
The same validator that is used in the developer itself is not now used ot to validate the name of your form or component.
So doing something like: solutionModel.newForm("form_" + application.getUUID().toString()); will result in such a warning because a uuid UUID has '-' in its string.
Make sure you replace all those chars (like '-') to '_'. Also a name can't start with a number. In certain parts of servoy using illegal names could result in weird behavior.

When showing a (Modal)FormDialog and then the user did a refresh, the dialog disappeared and the state was not fully correct anymore (server side still waits for the dialog)
This is now fixed, serv
Servoy will reshow the dialog(s) that where shown before the refresh.

...