Is it possible to show the name of a column only in form and details views and not show it in list view instead?
Solved! Go to Solution.
I see. For that you will need to use an expression in the Display Name property under the Display section for that column. An expression like this:
If (CONTEXT("ViewType") = "Table",
"",
"Your Original Column Name Here"
)
@FaCe wrote:
and not show it in list view
Do you mean Table View OR Something else?
For a Table View, there is a setting to turn off Column Headers. See image.
Yes for table view but i'd like only to hide a single column name not all ...
I see. For that you will need to use an expression in the Display Name property under the Display section for that column. An expression like this:
If (CONTEXT("ViewType") = "Table",
"",
"Your Original Column Name Here"
)
User | Count |
---|---|
15 | |
10 | |
10 | |
8 | |
3 |