Child pages
  • 2020.06 Whats new

Versions Compared

Key

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

...

A warning is 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 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.

...