Rank: Newbie
Groups: Registered
Joined: 8/11/2022(UTC) Posts: 0
|
I am wanting to format a column to be just barely visible. It will be the column I will have a drill down on, but the column data will be a concat value of data table fields that don't really need to be viewed by the user. Thank you
|
|
|
|
Rank: Administration
Groups: Administrators
Joined: 12/20/2013(UTC) Posts: 1,209 Thanks: 14 times Was thanked: 206 time(s) in 199 post(s)
|
One simple way to do that is to select the element in your model and then use the 'Cell Script' property: Code:@{
ResultCell cell=Model;
cell.FinalCssStyle = "width:10px;";
}
|
|
|
|
Rank: Newbie
Groups: Registered
Joined: 8/11/2022(UTC) Posts: 0
|
Thank you for your input. Unfortunately, it is not reducing that column down too much using your suggestion. I even made it 1px and it still shows the full column value.
|
|
|
|
Rank: Administration
Groups: Administrators
Joined: 12/20/2013(UTC) Posts: 1,209 Thanks: 14 times Was thanked: 206 time(s) in 199 post(s)
|
Actually it is a pure html issue: you can do what you want with your table cell <td> element with the FinalCssStyle or FinalCssStyle properties.
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.