<kendo:multiColumnComboBox-label>
Adds a label before the input. If the input has no id attribute, a generated id will be assigned. The string and the function parameters are setting the inner HTML of the label.
Example
<kendo:multiColumnComboBox>
<kendo:multiColumnComboBox-label></kendo:multiColumnComboBox-label>
</kendo:multiColumnComboBox>
Configuration Attributes
content java.lang.String
Sets the inner HTML of the label.
Example
<kendo:multiColumnComboBox-label content="content">
</kendo:multiColumnComboBox-label>
floating boolean
If set to true, the widget will be wrapped in a container that will allow the floating label functionality.
Example
<kendo:multiColumnComboBox-label floating="floating">
</kendo:multiColumnComboBox-label>
Event Attributes
content String
Sets the inner HTML of the label.
Example
<kendo:multiColumnComboBox-label content="handle_content">
</kendo:multiColumnComboBox-label>
<script>
function handle_content(e) {
// Code to handle the content event.
}
</script>
Event Tags
kendo:multiColumnComboBox-label-content
Sets the inner HTML of the label.
Example
<kendo:multiColumnComboBox-label>
<kendo:multiColumnComboBox-label-content>
<script>
function(e) {
// Code to handle the content event.
}
</script>
</kendo:multiColumnComboBox-label-content>
</kendo:multiColumnComboBox-label>