Hi Imran,
- code for hiding table is pretty simple, just check for the number of rows in the table:
if ($w('#table1').rows.length === 0) {
$w('#table1').hide();
}
- use onKeyPress for that.
Liran.
Hi Imran,
if ($w('#table1').rows.length === 0) {
$w('#table1').hide();
}
Liran.