I think this might be a bug (already mentioned somewhere else but the issue continues):
- When I do a find like:
controller.find();
startdatetime = ‘#’ + utils.dateFormat(new Date(), ‘dd-MM-yy’);
controller.search();
I do a search for a date without the time part and follow the formatting of the search field. This should work but gives me an error message that tells me that the formatting is not correct…
- Now when I do a find like:
controller.find();
var d1 = new Date(2003, 10, 1);
var d2 = new Date(2003, 10, 30);
startdatetime = ‘#’ + utils.dateFormat(d1, ‘dd-MM-yy’) + ‘…#’ + utils.dateFormat(d2, ‘dd-MM-yy’);
controller.search();
Again, I think I search according to the manuals and search on a range (one month). The error message I get now looks like: ‘java.sql.SQLException: Not all parameters were set. Cannot execute query. Not all parameters were set. Cannot execute query.’
Strange… Is it me? Or something else…