popularanky
Posts: 53
|
| Posted: 01/19/2011, 6:19 AM |
|
I have three search parameter (s_employee_id, date1, date2) and I want to hide a Grid (grid1), so that it can only display when a search is performed.
_________________
EKERE UBONG UBONG
IT Officer
CognitiveDrive |
 |
 |
ckroon
Posts: 869
|
| Posted: 01/19/2011, 8:37 AM |
|
On the Grids Before Show Event
if (CCGetFromGet("s_employee_id",-1) == -1)
$Component->Visible = False;
else
$Component->Visible = True;
_________________
Walter Kempees...you are dearly missed. |
 |
 |
popularanky
Posts: 53
|
| Posted: 01/20/2011, 1:05 AM |
|
Thanks. It work welll.
_________________
EKERE UBONG UBONG
IT Officer
CognitiveDrive |
 |
 |
|