Hi Ryan,
The Grid should display the "Add new record" button in the left corner by default. Here's a screenshot that shows how it looks like at my end with the ToolBar configuration you posted when using the Bootstrap-v4 theme.
The search panel is positioned in the right corner through the following CSS rule:
.k-grid .k-grid-search {
float: right;
}
With regard to the "Add new record" button, there is no specific rule that positions it in the left corner, and it should be displayed there unless there is a custom CSS rule that overrides its position. Check whether removing all the custom CSS applied to the page and leaving only the Kendo UI CSS files/-s resolves the issue.
Alternatively, check whether applying the following CSS rule will have the desired effect:
.k-grid .k-grid-toolbar .k-grid-add {
float: left;
}
Regards,
Ivan Danchev
Progress Telerik
Get
quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.
Learn More.