This is kendo ui for asp.net mvc. In the past I have used float:right to move menu items and gridtoolbar items to the right side, but that no longer works. For example:
.ToolBar(toolbar =>
{
toolbar.Search();
toolbar.Custom()
.Text("Clear Filters/View All")
.Url("#")
.HtmlAttributes(new { id = "btnClearFilters", @class="btn btn-link", onclick = "btnClearFiltersClick()" });
toolbar.Custom()
.Text("New Order")
.Url("#")
.IconClass("k-icon k-i-add")
.HtmlAttributes(new { id = "btnNew", style = "float:right;", onclick = "btnNewClick()" });
toolbar.Custom()
.Text("Copy Order")
.Url("#")
.IconClass("k-icon k-i-copy")
.HtmlAttributes(new { id = "btnCopy", style = "float:right;margin-right:20px;", onclick = "btnCopyClick()", disabled = "disabled" });
})
