popup.appendToString
Defines a jQuery selector that will be used to find a container element, where the popup will be appended to.
Example
<div id="container">
<button id="splitButton">Command</button>
</div>
<script>
$("#splitButton").kendoSplitButton({
items: [
{ text: "Option 1" },
{ text: "Option 2" },
{ text: "Option 3" }
],
popup: {
appendTo: "#container"
}
});
</script>
In this article