To start off with, I am running Servoy Developer version 3.0b3-build 364 with Java version 1.5.0_06-b05 on Windows XP.
My servoy client is running Servoy Client version 3.0b3-build 364 with Java version 1.5.0_06-b05 Running on Windows 2000.
I have a int(11) column named created_time that holds the UNIX timestamp of the creation date/time.
I have a varchar(255) column named cr_date that I have being populated with the cut up date from created_time. Below is the code:
var a = new Date(created_time*1000);
var b = a.getDate();
var c = a.getMonth()+1;
var d = a.getYear()+1900;
forms.cr_coord_entry.cr_date = c + '/' + b + '/' + d;
It works fine in developer, I see it with no problems.
On the Servoy client side, I see a blank field. According to MyPHP Admin, the column is populated with the correct text, but it won’t show up on client.
If I can see it on one license and not on another, I assume this is a bug.