Add New Row Button
RadGridView
allows you to display an additional row that will allow you to insert new entries in the bound collection. To display it, set the NewRowPosition
property to either Top
or Bottom
and expose an empty constructor in the underlying object.
The Bottom option works only when the
GroupRenderMode
property ofRadGridView
is set toFlat
.
The following example shows how to display the new row:
Defining the underlying object and view model
Defining the RadGridView to show the new row
New Row Position
The NewRowPosition
property allows you to specify whether the new row will be visible on the top or on the bottom of the items, or not be displayed at all. The property is of the type of GridViewNewRowPosition
and it exposes the following options:
-
None
—With this option, the new row will not be displayed. This is the default value of the NewRowPosition property. -
Top
—Displays the new row on top of the displayed items. -
Bottom
—Displays the new row on the bottom of the items in the current view port. For this option, theGroupRenderMode
property of RadGridView has to be set toFlat
.
Setting the new row position to be on the bottom
Customizing the New Row's Content
RadGridView provides the ability to customize the content of the new row. To do so, you can utilize the GridViewNewRowContent
and GridViewNewRowContentTemplate
properties.
Using the GridViewNewRowContent and GridViewNewRowContentTemplate
Styling the New Row Element
The new row of RadGridView is represented by the GridViewNewRow
element. You can style it either implicitly (via a global Style) or utilize the NewRowStyle property of RadGridView. To learn how to style the GridViewNewRow element, check the Styling the GridViewNewRow article.