-
can forms be saved before generated so forms can be retrieved next time... and not need to set up again..
2008-12-17 05:12:16 UTC by mrandre
-
can't modify connections setting at first time, assumes
localhost with standard root no password is used, this can only be changed after login at setup or by direct accesing mole's mysql database.
Maybe an installer (could be minimal) would be required
had no complaints doo..
2007-09-21 12:45:58 UTC by xumxum
-
We are working curently on some video tutorials and a powerpoint prezentation.
2007-04-20 11:49:27 UTC by xumxum
-
xumxum committed patchset 53 of module mole to the Mole CVS repository, changing 2 files.
2007-03-19 19:51:49 UTC by xumxum
-
output dir not in the release , bacause it is not in the cvs when exported it got left out,
2007-03-19 19:37:27 UTC by xumxum
-
added with isNaN function, simpler :)
new option called number, same as text but with isNaN test
for date it was already implemented, did not notice
works with float numbers to ex 1.25
length not implementet, can be added after generation for now.
2007-03-19 19:13:18 UTC by xumxum
-
// only allow numbers to be entered
var checkOK = "0123456789";
var checkStr = theForm.numbers.value;
var allValid = true;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch != ",")
allNum += ch;
}
if...
2007-03-19 17:51:52 UTC by xumxum
-
xumxum committed patchset 52 of module mole to the Mole CVS repository, changing 1 files.
2007-03-01 10:47:22 UTC by xumxum
-
xumxum committed patchset 51 of module mole to the Mole CVS repository, changing 1 files.
2007-03-01 10:24:13 UTC by xumxum
-
add about in the menu, apear logo and developers version number stuff like that.
2007-02-28 23:14:00 UTC by xumxum