M
Meryk
Guest
Hello, I am trying to do something very simple : A select query client side, to return records where the field myDateTime is less or equal to a given date. Here is what I am doing : var dateVar = new Date(); // This will be a date selected from a date picker later on, but just testing now. rbf_selectQuery('select id, field1, field2 from objectA where myDateTime <= ' + dateVar.getTime() , 10, function callback(values){ console.log('Values are : ' + values); } The values returned here are empty, knowing that I have few records with a date less or equal to today. Any ideas why this is not working please? Thank you Meryem
Continue reading...
Continue reading...