<kendo:taskBoard-columnSettings>

Defines the settings for the columns.

Example

<kendo:taskBoard>
    <kendo:taskBoard-columnSettings></kendo:taskBoard-columnSettings>
</kendo:taskBoard>

Configuration Attributes

dataOrderField java.lang.String

The field used to order columns (number based). Automatically adds sorting to the columns DataSource instance.If not set, columns will be rendered in the order they are fetched. And ordering will not be applied to the DataSource and respectively, not synced with the remote data source.

Example

<kendo:taskBoard-columnSettings dataOrderField="dataOrderField">
</kendo:taskBoard-columnSettings>

dataStatusField java.lang.String

The field of the data item that provides the status of the column. Mapped with the status of the cards.

Example

<kendo:taskBoard-columnSettings dataStatusField="dataStatusField">
</kendo:taskBoard-columnSettings>

dataTextField java.lang.String

The text field of the column.

Example

<kendo:taskBoard-columnSettings dataTextField="dataTextField">
</kendo:taskBoard-columnSettings>

template java.lang.String

Controls the rendering of the column header. In the template context the buttons field provides the HTML for the buttons of the column.

Example

<kendo:taskBoard-columnSettings template="template">
</kendo:taskBoard-columnSettings>

width java.lang.Object

Configures the width of the columns

Example

<kendo:taskBoard-columnSettings width="width">
</kendo:taskBoard-columnSettings>

Configuration JSP Tags

kendo:taskBoard-columnSettings-buttons

Defines the list of buttons rendered in the column.

More documentation is available at kendo:taskBoard-columnSettings-buttons.

Example

<kendo:taskBoard-columnSettings>
    <kendo:taskBoard-columnSettings-buttons></kendo:taskBoard-columnSettings-buttons>
</kendo:taskBoard-columnSettings>

Event Attributes

template String

Controls the rendering of the column header. In the template context the buttons field provides the HTML for the buttons of the column.

Example

<kendo:taskBoard-columnSettings template="handle_template">
</kendo:taskBoard-columnSettings>
<script>
    function handle_template(e) {
        // Code to handle the template event.
    }
</script>

Event Tags

kendo:taskBoard-columnSettings-template

Controls the rendering of the column header. In the template context the buttons field provides the HTML for the buttons of the column.

Example

<kendo:taskBoard-columnSettings>
    <kendo:taskBoard-columnSettings-template>
        <script>
            function(e) {
                // Code to handle the template event.
            }
        </script>
    </kendo:taskBoard-columnSettings-template>
</kendo:taskBoard-columnSettings>
In this article
Not finding the help you need?