 
	
Test the following SplitButton configuration:
@(Html.Kendo().SplitButton()
   .Name("splitbutton")
   .Text("test2")
   .HtmlAttributes(new { @class = "myclass", style = "border:1px solid black;", data_customAttr = "test" })
   .Icon("download")
   .Items(i =>
    {
        i.Add().Text("button1");
    })
)
The custom class, attribute and styles are not applied to the SplitButton's Html element.
The HtmlAttributes are applied to the SplitButton's element.
