Servoy 3.0 Beta 1

Hello Hans-Peter,

  1. Another solution is to loop through the records and printing the records one by one.

  2. As far as I know this is not (yet) possible. Do you mean you have different size, orientation and margins per record?
    You can only set these settings on the form in designer

Rene

From the beta 1 announcement:

Will default only work on Java 5!
To run Servoy 3.0 under Java 1.4.x use: java - Djava.security.policy=“./server/conf/catalina.policy” -jar servoy_developer.jar

In case anyone is copying and pasting this into their command prompt, there’s a slight typo - there should be no space between the - and the D, so it should be:

java -Djava.security.policy=“./server/conf/catalina.policy” -jar servoy_developer.jar

Jan Blok:
[enh]- application.getValueListDisplayValue(…)
[enh]-application.getValueListArray(…)

I try to get the length of application.getValueListArray(‘myValuelist’) with:

var valueArray = application.getValueListArray(‘myValuelist’)
var size = valueArray.length

…but I get null as result :(

I have also noticed that this week but with 2.2.5 . Forgot to mention/report it.

IT2Be:
I have also noticed that this week but with 2.2.5 . Forgot to mention/report it.

var word = myString
application.getValueListDisplayValue(‘myValuelist’, word)
Doesn’t work either :(