rowsNumber(default: 1)
Sets the number of visible text lines in the textarea. Applies only when the mode is set to "multi".
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
mode: "multi",
rows: 3,
placeholder: "Three visible rows..."
});
</script>