Database search options

Hi Imran,

  1. 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();
}
  1. use onKeyPress for that.

Liran.