Hello,
my first impressions on RC4:
-
Table views are “fixed”, that means that columns cannot be resized and disabling the horizontal scrollbar doesn’t have the effect, that the table fills the form width
-
A method like this
var kontakte = new Array();
for ( var i = 1 ; i <= kontakte_dokumente_to_kontakte.getSize(); i++ )
{
var record = kontakte_dokumente_to_kontakte.getRecord(i)
kontakte[i-1] = record.kontakte_to_spotlight.name_komplett_anrede;
}
kontakte = kontakte.toString();
kontakte = kontakte.replace(',', ', ');
return kontakte;
showed something like “Mr. Bean, Mr. Sausage” in the past, now its shows “[Mr. Bean, Mr. Sausage]” and “” when the array above is empty.
- I am getting cryptical errors on calculations, that have not been there before, like this one:
Invalid JavaScript value of type org.mozilla.javascript.WrappedStringBuffer
Aaaah