Hi,
I have a table populated by a query.
When I press on one of the table rows, certain fields are populated.
Everything works with code (no datasets) and everything works fine until i try to assign a date picker with the following code
if (results.items[0].sentDate !== null && results.items[0].sentDate !== “” ) {
$w(“#datePicker1”).value = requestResults.items[0].sentDate ;
} else {
$w(“#datePicker1”).value = null ;
}
when I introduced this code, it makes my table “jump” as if it was refreshed. It also makes another dataset (not related at all to this code) refresh
I thought it was the null assignment so I removed it, but it didn’t help
Cheers
Anat