Articles in this section
Category / Section

How to set default values for columns AddNewRow in Silverlight DataGrid?

1 min read

AddNewRow allows you to add rows in the runtime to enter new records in the DataGrid control. By default, SfDataGrid does not set any default value for columns in the AddNewRow. However, the SfDataGrid allows you to set some initial values for AddNewRow by clicking in the AddNewRow and handling the AddNewRowInitiating event that is triggered when you start editing in AddNewRow. By handling this event, you can add custom values for the AddNewRow columns in the DataGrid.

The following code example demonstrates how to add initial values to AddNewRow by handling the AddNewRowInitiating event.

C#

this.dataGrid.AddNewRowInitiating += dataGrid_AddNewRowInitiating;
private void dataGrid_AddNewRowInitiating(object sender, AddNewRowInitiatingEventArgs args)
{
    Random random = new Random();
    var data = args.NewObject as OrderInfo;
    data.OrderID = random.Next(10101,10300);
    data.CustomerID = "Customer"+random.Next(1,30);
    data.ShippingDate = DateTime.UtcNow;
    data.EmployeeID = random.Next(1, 10);
    data.ShipCity = "Chennai";
}

 

Event

Parameters

Description

AddNewRowIntiating

NewObject

This event is triggered when you start editing in the AddNewRow.

NewObject – This contains the newly created object that helps set the default value when you start editing in the AddNewRow.

Note: NewObject is read-only property.




The following screenshot shows the output of the above code. The AddNewRow is initiated with some default values.

D:\Syncfusion\Issues\2014 Volume 2\KB Issues\KB Images\AddNewRowInitiating.png

 

Sample Links:

WPF

WRT

SilverLight

UWP

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied