nongkook
nongkook

Reputation: 41

how to hide table-column in lotus notes form?

pic pic ex. i have 2 column in this table if i write "if i = 1 then hide column 2" and when i = 1 , they hide only text, not hide table-column how can i hide all? thank you! i weak in English.

Upvotes: 0

Views: 1065

Answers (3)

G. Cox
G. Cox

Reputation: 11

There's no way to hide a table column when using the Notes client. If you're going to display the table in a web browser then you could easily hide with css.

I currently am able to "hide" a column but it's for a very specific use case which is probably not helpful to you but may be to others. I would only use this if it's the last column in the table, the contents are there for programmatic control (buttons, etc) or non-essential information, and you're hiding for preview/read/print purposes.

Do the following on all cells of the column:

  1. Define the hide-when
  2. Set the border width to 0
  3. Set the cell color to white (or whatever your form's background color is)

Of course, by doing this the border width and color will always be the same. There's no way to programmatically change those.

Upvotes: 0

Andre Krepsky
Andre Krepsky

Reputation: 111

In order to have full control of rows/cells hiding, you might want to write your own table in plain HTML.

Upvotes: 1

umeli
umeli

Reputation: 1068

The hide when has to include the whole column not only one cell.

Upvotes: 2

Related Questions