From 8a67c5408a5a248e6ad6e42c3540bf6a7f437906 Mon Sep 17 00:00:00 2001 From: Ilkay Ilknur Date: Tue, 6 Apr 2021 16:14:24 +0300 Subject: [PATCH] new member definitions have been added. --- docs/en/UI/Blazor/Data-Table-Column-Extensions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/en/UI/Blazor/Data-Table-Column-Extensions.md b/docs/en/UI/Blazor/Data-Table-Column-Extensions.md index 6fad41af81..ebb2f27cbf 100644 --- a/docs/en/UI/Blazor/Data-Table-Column-Extensions.md +++ b/docs/en/UI/Blazor/Data-Table-Column-Extensions.md @@ -70,7 +70,9 @@ This section explains how to customize data table columns using the properties i * `Component`: Type of the component that you want to render. See the "Rendering Custom Components In The Data Table Columns" section for details. * `Actions`: Action lists for the column. You can render additional action columns by adding actions to this collection. * `ValueConverter`: Simple converter function that is being called before rendering the content. +* `Sortable`: A boolean field indicating whether the column is sortable or not. * `DisplayFormat`: You can specify a custom format for the column. +* `DisplayFormatProvider` : You can provide a custom `IFormatProvider` for the column. Default value is `CultureInfo.CurrentCulture`. ## Rendering Custom Components In The Data Table Columns