Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide a column in ASP.NET Dynamic Data

Is there any way to apply an attribute to a model file in ASP.NET Dynamic Data to hide the column?

For instance, I can currently set the display name of a column like this:

[DisplayName("Last name")]
public object Last_name { get; set; }

Is there a similar way to hide a column?

Edit: Many thanks to Christian Hagelid for going the extra mile and giving a spot-on answer :-)

like image 635
Matt Mitchell Avatar asked Aug 25 '08 04:08

Matt Mitchell


1 Answers

Had no idea what ASP.NET Dynamic Data was so you promted me to so some research :)

Looks like the property you are looking for is

[ScaffoldColumn(false)]

There is also a similar property for tables

[ScaffoldTable(false)]

source

like image 71
Christian Hagelid Avatar answered Nov 11 '22 00:11

Christian Hagelid