Class Column
Represents a table column.
public class Column
- Inheritance
-
objectColumn
- Extension Methods
Constructors
Column()
public Column()
Fields
COLUMN_MAX_WIDTH_DEFAULT
Default maximal value for column width
public const int COLUMN_MAX_WIDTH_DEFAULT = 100
Field Value
- int
COLUMN_MIN_WIDTH_DEFAULT
Default minimal value for column width
public const int COLUMN_MIN_WIDTH_DEFAULT = 8
Field Value
- int
Properties
Caption
Gets or sets the column caption.
public string Caption { get; set; }
Property Value
- string
ContentType
Name of the component to be rendered as the skeleton while waiting for the real data.
public ColumnContentType ContentType { get; set; }
Property Value
MaxWidth
Maximal width of the column in grid units.
public int MaxWidth { get; set; }
Property Value
- int
MinWidth
Minimal width of the column in grid units.
public int MinWidth { get; set; }
Property Value
- int
Name
Gets or sets the column name.
public string Name { get; set; }
Property Value
- string
Searchable
Indicates whether the table rows are able to be filtered by values in this column.
public bool Searchable { get; set; }
Property Value
- bool
Sortable
Indicates whether the table rows are sortable by values in this column.
public bool Sortable { get; set; }
Property Value
- bool
Tooltip
Tooltip for column.
public string Tooltip { get; set; }
Property Value
- string
TooltipAsHtml
Indicates that tooltip is rendered as HTML.
public bool TooltipAsHtml { get; set; }
Property Value
- bool
Remarks
Beware that enabling this property may lead to executing malicious code on client.
Visible
Gets or sets the column visibility.
public bool Visible { get; set; }
Property Value
- bool