adspace


What are three methods for displaying data in a syncfusion datagrid

Answer Posted / Preeti Sharma

1. GridDataBinding: This method binds the datagrid to a collection of objects. nn```csharpnsyncfusionGrid.ItemsSource = myCollection;```
2. DataSource: This property can be set to an IEnumerable or ObservableCollection, providing live updates as new data is added. nn```csharpnsyncfusionGrid.DataSource = myCollection.AsObservable();```
3. DataSourceTemplate: This method allows you to define a custom template for each data item in the datagrid.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the current version of entity framework?

1048


Explain how to call the sql commands asynchronously in ado.net version 2.0?

996