actionButtonObject(default: null)
Configures the Action button (send/stop) in the end affix. The button is always visible. When null or not configured, the button is enabled by default. Use { enable: false } to disable it.
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
actionButton: {
enable: true
},
placeholder: "Ask a question..."
});
</script>
Example - Customizing the action button
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
actionButton: {
size: "large",
rounded: "full",
themeColor: "primary"
},
placeholder: "Type your message..."
});
</script>