For the toolbar Getting Started guide, the split button example isn't correct:
http://docs.telerik.com/kendo-ui/getting-started/web/toolbar/overview#example---initialization-and-basic-usage
should be items.menuButtons and not items.items.
http://docs.telerik.com/kendo-ui/getting-started/web/toolbar/overview#example---initialization-and-basic-usage
should be items.menuButtons and not items.items.
//split button
{
type:
"splitButton"
,
text:
"Split Button"
,
items: [
{ id:
"option1"
, text:
"Option 1"
},
{ id:
"option2"
, text:
"Option 2"
},
{ id:
"option3"
, text:
"Option 3"
}
]
},