Articles in this section
Category / Section

How to refresh column width while adding records at run time in WinRT DataGrid ?

1 min read

SfDataGrid.ColumnSizer property (type of GridLengthUnitType) provides different in-built options to specify the column width based on the data present in the cell and available width. GridLengthUnitType.SizeToCells, GridLengthUnitType.Auto and GridLengthUnitType.AutoWithLastColumnFill options is used to set the width of the column with respect to the cell content.

The width of the columns are calculated while loading SfDataGrid and when you are adding the record at runtime, the width of the columns is not refreshed based on ColumnSizer. You can refresh ColumnSizer at runtime by calling SfDataGrid.GridColumnSizer.Refresh() method. When you are using GridLengthUnitType.SizeToCells, GridLengthUnitType.Auto or GridLengthUnitType.AutoWithLastColumnFill options, you can reset the previously calculated widths by calling SfDataGrid.GridColumnSizer.ResetAutoCalculationforAllColumns() method before calling Refresh method. You can reset the width for a particular column by using SfDataGrid.GridColumnSizer.ResetAutoCalculation() method. So that the width calculation is done only for the particular column that provides better performance.

 

In the following code example, ColumnSizer is refreshed at runtime after adding records.

C#

private void AddRecords_Click(object sender, RoutedEventArgs e)
{
    var viewmodel = (this.DataContext as ViewModel);
    this.sfgrid.GridColumnSizer.ResetAutoCalculationforAllColumns();
    viewmodel.Employees.Add(employee.GetEmployee(1));
    viewmodel.Employees.Add(employee.GetEmployee(2));
    this.sfgrid.GridColumnSizer.Refresh();
}

 

The following screenshot displays the column widths that are set based on its cell content.

C:\Users\Giftline\Desktop\a.png

Figure 1: Column Width Updated in grid

Sample Links

WPF

WRT

SilverLight

UWP

 

Conclusion

I hope you enjoyed learning about how to.refresh column width while adding records at run time in WinRT DataGrid.

You can refer to our WinRT DataGrid featuretour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinRT DataGrid example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

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