Harry
|
| Posted: 05/23/2002, 1:19 PM |
|
I need to Hide certain Cells on a Table based on a GroupID Session. I am using CCS Beta4 ASP With Templates. Is there anyway to put asp code into the HTML or any other way to do this Task.
Thanks
Harry Wheat
|
|
|
 |
Nicole
|
| Posted: 05/24/2002, 12:56 AM |
|
Harry,
you cannot hide column or row set due to html code. I mean that each part of html that is displayed depending on any condition (e.g. row with Error messages on the form) are surrounded with html comments which are parsed when code is executed. But row or table cell are generated as plane html without any comments.
The workaround for hiding cell in Columnar or Justified Grid form and on Record form is to display it as field (e.g. as textbox) or as empty table row. In this case as in CC set field type to Label and assign it desired value in field Before Show event.
ASP
form_name.field_name.Value= "<input type = text name = 'test_val' value = '234' >"
|
|
|
 |
|