<kendo:multiColumnComboBox-column>
Defines the columns rendered in the table of the MultiColumnComboBox.
Example
<kendo:multiColumnComboBox-columns>
<kendo:multiColumnComboBox-column></kendo:multiColumnComboBox-column>
</kendo:multiColumnComboBox-columns>
Configuration Attributes
field java.lang.String
Defines the field for the column.
Example
<kendo:multiColumnComboBox-column field="field">
</kendo:multiColumnComboBox-column>
headerTemplate java.lang.String
Renders a template for the column header.
Example
<kendo:multiColumnComboBox-column headerTemplate="headerTemplate">
</kendo:multiColumnComboBox-column>
template java.lang.String
Renders a template for the column.
Example
<kendo:multiColumnComboBox-column template="template">
</kendo:multiColumnComboBox-column>
title java.lang.String
Defines the text of the column title in the header.
Example
<kendo:multiColumnComboBox-column title="title">
</kendo:multiColumnComboBox-column>
width java.lang.Object
The width of the column. Numeric values are treated as pixels.
Example
<kendo:multiColumnComboBox-column width="width">
</kendo:multiColumnComboBox-column>
Event Attributes
template String
Renders a template for the column.
Example
<kendo:multiColumnComboBox-column template="handle_template">
</kendo:multiColumnComboBox-column>
<script>
function handle_template(e) {
// Code to handle the template event.
}
</script>
headerTemplate String
Renders a template for the column header.
Example
<kendo:multiColumnComboBox-column headerTemplate="handle_headerTemplate">
</kendo:multiColumnComboBox-column>
<script>
function handle_headerTemplate(e) {
// Code to handle the headerTemplate event.
}
</script>
Event Tags
kendo:multiColumnComboBox-column-template
Renders a template for the column.
Example
<kendo:multiColumnComboBox-column>
<kendo:multiColumnComboBox-column-template>
<script>
function(e) {
// Code to handle the template event.
}
</script>
</kendo:multiColumnComboBox-column-template>
</kendo:multiColumnComboBox-column>
kendo:multiColumnComboBox-column-headerTemplate
Renders a template for the column header.
Example
<kendo:multiColumnComboBox-column>
<kendo:multiColumnComboBox-column-headerTemplate>
<script>
function(e) {
// Code to handle the headerTemplate event.
}
</script>
</kendo:multiColumnComboBox-column-headerTemplate>
</kendo:multiColumnComboBox-column>