Positioning/Styling Toolbar

Docs

The toolbar can be positioned at the top of bottom of the form using the ToolbarPosition property. The style of the toolbar button can be controlled with the ToolbarButtonStyle property.

Toolbar Position Toolbar Style
Razor
                                
                                        
DbNetEditCore customersEdit = new DbNetEditCore("northwind", "customers")
{
    LayoutColumns = 10,
    ToolbarPosition = Model.ToolbarLocation,
    ToolbarButtonStyle = Model.ToolbarButtonStyle
};

@customersEdit.Render()