<kendo:textArea-label>

Adds a label before the textarea. If the textarea 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:textArea>
    <kendo:textArea-label></kendo:textArea-label>
</kendo:textArea>

Configuration Attributes

content java.lang.String

Sets the inner HTML of the label.

Example

<kendo:textArea-label content="content">
</kendo:textArea-label>

floating boolean

If set to true, the widget will be wrapped in a container that will allow the floating label functionality.

Example

<kendo:textArea-label floating="floating">
</kendo:textArea-label>

Event Attributes

content String

Sets the inner HTML of the label.

Example

<kendo:textArea-label content="handle_content">
</kendo:textArea-label>
<script>
    function handle_content(e) {
        // Code to handle the content event.
    }
</script>

Event Tags

kendo:textArea-label-content

Sets the inner HTML of the label.

Example

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