Skip to main content
Version: 3.5

ColumnHeader

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Displays a standard column header in a ListView control.

public class ColumnHeader : Component, ICloneable, IHasPropertyStore, IHasResponsiveProfiles, IImage

Constructors

Instance memberColumnHeader()

Initializes a new instance of the ColumnHeader class.

Instance memberColumnHeader(imageIndex)

Initializes a new instance of the ColumnHeader class with the image specified.

NameTypeDescription
imageIndexInt32The index of the image to display in the ColumnHeader.

Instance memberColumnHeader(imageKey)

Initializes a new instance of the ColumnHeader class with the image specified.

NameTypeDescription
imageKeyStringThe key of the image to display in the ColumnHeader.

Properties

Instance memberAutoEllipsis

Boolean: Returns or sets whether the ellipsis character (...) appears at the right edge of the header text when the View property is set to Details. (Default: True)

Instance memberBackColor

Color: Returns or sets the background color for the ColumnHeader. (Default: Color [Empty])

The default is Empty to use the current theme's color set in "table-scroller/header/default/properties/backgroundColor".

Instance memberCellRenderer

String: Returns the name of the default cell renderer to use on the client side to render the cells that belong to this column. If it's null or empty it defaults to "Cell". (Default: null)

The name of the cell renderer can be a fully qualified class name (i.e. "wisej.web.datagrid.cellRenderer.Cell") or just the class name (i.e. "ImageCell") in which case the client library prepends "wisej.web.datagrid.cellRenderer".

Instance memberContextMenu

ContextMenu: Returns or sets the shortcut menu associated with the column header. (Default: null)

Instance memberControl

Control: Returns or sets a child control to display inside the cell.

Instance memberDisplayIndex

Int32: Returns or sets the display order of the column relative to the currently displayed columns.

Throws:

Instance memberDisplayPropertyName

String: Returns or sets the property to display in the Items. (Default: "")

Instance memberForeColor

Color: Returns or sets the text color of the ColumnHeader. (Default: Color [Empty])

The default is Empty to use the current theme's color set in "table-scroller/header/default/properties/textColor".

Instance memberHasResponsiveProfiles

Boolean: Check if the component defines any responsive profile without forcing the creation of the collection.

Instance memberImage

Image: Returns or sets the image that is displayed in a ColumnHeader control.

Instance memberImageIndex

Int32: Returns or sets the index of the image displayed in the ColumnHeader. (Default: -1)

Throws:

Instance memberImageKey

String: Returns or sets the key of the image displayed in the ColumnHeader. (Default: "")

Instance memberImageList

ImageList: Returns the image list associated with the ColumnHeader.

Instance memberImageSource

String: Returns or sets the theme name or URL for the image to display in the ColumnHeader control.

Instance memberIndex

Int32: Returns the location of this ColumnHeader within the ListView control's ColumnHeaderCollection.

Instance memberListView

ListView: Returns the ListView control the ColumnHeader is located in.

Instance memberMaximumWidth

Int32: Returns or sets the maximum width, in pixels, of the column. (Default: 32000)

Throws:

Instance memberMinimumWidth

Int32: Returns or sets the minimum width, in pixels, of the column. (Default: 20)

Throws:

Instance memberMovable

Boolean: Returns or sets whether the column header can be moved by the user. (Default: True)

Instance memberName

String: Returns or sets the name of the ColumnHeader.

Instance memberResizable

Boolean: Returns or sets whether the column header can be resized by the user. (Default: True)

Instance memberSortable

Boolean: Returns or sets whether the column can be sorted by clicking on the header. (Default: True)

Instance memberSortGlyph

SortOrder: Returns or sets the type of sort glyph to display in the column header. (Default: None)

Instance memberTag

Object: Returns or sets an object that contains data to associate with the ColumnHeader. (Default: null)

Instance memberText

String: Returns or sets the text displayed in the column header. (Default: "")

Instance memberTextAlign

HorizontalAlignment: Returns or sets the horizontal alignment of the text displayed in the ColumnHeader. (Default: Left)

Instance memberVisible

Boolean: Returns or sets whether the column is visible when the control is in Details view. (Default: True)

Instance memberWidth

Int32: Returns or sets the width of the column. (Default: 60)

Methods

Instance memberAutoResize(headerAutoResize)

Resizes the width of the column as indicated by the resize style.

ParameterTypeDescription
headerAutoResizeColumnHeaderAutoResizeStyleOne of the ColumnHeaderAutoResizeStyle values.

Instance memberClone()

Creates an identical copy of the current ColumnHeader that is not attached to any list view control.

Returns: Object. An object representing a copy of this ColumnHeader object.

Instance memberUpdate()

Updates the component on the client.

Inherited By

NameDescription
ImageColumnHeaderDisplays an image column header in a ListView control.

Implements

NameDescription
IImageProvides access to common image properties across the controls that implement this interface.
IWisejComponentAll wisej components implement this interface.
IWisejSerializableAllows an object to serialize itself.