multilineStateChange

Fires when the PromptBox transitions between single-line and multi-line states in auto mode.

Event Data

e.isMultiline Boolean

Indicates whether the PromptBox is now in multi-line state.

Example

<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
    mode: "auto",
    placeholder: "Type multiple lines to expand...",
    multilineStateChange: function(e) {
        console.log("Is now multiline:", e.isMultiline);
    }
});
</script>
In this article
multilineStateChange
Not finding the help you need?
Contact Support