<kendo:fileManager-views-grid-column>

The configuration of the grid columns. An array of JavaScript objects or strings. JavaScript objects are interpreted as column configurations. Strings are interpreted as the field to which the column is bound. The grid will create a column for every item of the array.

Example

<kendo:fileManager-views-grid-columns>
    <kendo:fileManager-views-grid-column></kendo:fileManager-views-grid-column>
</kendo:fileManager-views-grid-columns>

Configuration Attributes

encoded boolean

If set to true the column value will be HTML-encoded before it is displayed. If set to false the column value will be displayed as is. By default the column value is HTML-encoded.

Example

<kendo:fileManager-views-grid-column encoded="encoded">
</kendo:fileManager-views-grid-column>

field java.lang.String

The field to which the column is bound. The value of this field is displayed in the column's cells during data binding. Only columns that are bound to a field can be sortable or filterable. The field name should be a valid Javascript identifier and should contain only alphanumeric characters (or "$" or "_"), and may not start with a digit.

Example

<kendo:fileManager-views-grid-column field="field">
</kendo:fileManager-views-grid-column>

headerTemplate java.lang.String

The template which renders the column header content. By default the value of the title column option is displayed in the column header cell.

Example

<kendo:fileManager-views-grid-column headerTemplate="headerTemplate">
</kendo:fileManager-views-grid-column>

sortable boolean

If set to true the user can click the column header and sort the grid by the column field when sorting is enabled. If set to false sorting will be disabled for this column.

Example

<kendo:fileManager-views-grid-column sortable="sortable">
</kendo:fileManager-views-grid-column>

template java.lang.String

If set to true the user can click the column header and sort the grid by the column field when sorting is enabled. If set to false sorting will be disabled for this column.

Example

<kendo:fileManager-views-grid-column template="template">
</kendo:fileManager-views-grid-column>

title java.lang.String

The text that is displayed in the column header cell. If not set the field is used.

Example

<kendo:fileManager-views-grid-column title="title">
</kendo:fileManager-views-grid-column>

width float

The text that is displayed in the column header cell. If not set the field is used.

Example

<kendo:fileManager-views-grid-column width="width">
</kendo:fileManager-views-grid-column>
In this article
Not finding the help you need?