From da5aa28ab5dd87992a8a33a9e4092b710f35eef3 Mon Sep 17 00:00:00 2001 From: NithyaSivaprakasam <103498896+NithyaSivaprakasam@users.noreply.github.com> Date: Mon, 28 Jul 2025 14:53:26 +0530 Subject: [PATCH 001/194] Update column-resizing.md --- blazor/datagrid/column-resizing.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/blazor/datagrid/column-resizing.md b/blazor/datagrid/column-resizing.md index 4cabe6784d..4628e0a856 100644 --- a/blazor/datagrid/column-resizing.md +++ b/blazor/datagrid/column-resizing.md @@ -88,7 +88,8 @@ public class OrderDetails > * You can disable resizing for a particular column by setting the [AllowResizing](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridColumn.html#Syncfusion_Blazor_Grids_GridColumn_AllowResizing) property of **GridColumn** to false. > * In RTL mode, you can click and drag the left edge of the header cell to resize the column. -> * The width property of the column can be set initially to define the default width of the column. However, when column resizing is enabled, you can override the default width by manually resizing the columns. +> * The [Width](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.SfGrid-1.html#Syncfusion_Blazor_Grids_SfGrid_1_Width) property of the GridColumn can be set initially to define the default width of the column. However, when column resizing is enabled, you can override the default width by manually resizing the columns. +> * When the `Width` property of a GridColumn is explicitly set to **0** and column resizing is enabled, the DataGrid will automatically assign a default width of **200px** to that column. ## Restrict the resizing based on minimum and maximum width @@ -562,4 +563,4 @@ public class OrderDetails {% endhighlight %} {% endtabs %} -{% previewsample "https://blazorplayground.syncfusion.com/embed/hjBTWViiLnOofXge?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} \ No newline at end of file +{% previewsample "https://blazorplayground.syncfusion.com/embed/hjBTWViiLnOofXge?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %} From ac4eb7cf599b8339a7a11fa3804b3fa145ee4bc8 Mon Sep 17 00:00:00 2001 From: Yuvan111 <89587491+Yuvan111@users.noreply.github.com> Date: Fri, 19 Sep 2025 16:54:56 +0530 Subject: [PATCH 002/194] 983306: Re-structing the template section of File uploader. --- blazor/file-upload/template.md | 96 ++++++++++++++++------------------ 1 file changed, 46 insertions(+), 50 deletions(-) diff --git a/blazor/file-upload/template.md b/blazor/file-upload/template.md index 27c5a36929..122c338c38 100644 --- a/blazor/file-upload/template.md +++ b/blazor/file-upload/template.md @@ -1,7 +1,7 @@ --- layout: post title: Template in Blazor File Upload Component | Syncfusion -description: Checkout and learn here about Template in Syncfusion Blazor File Upload component and much more details. +description: Learn how to customize the Syncfusion Blazor File Upload component's appearance using templates, including how to add a progress bar. platform: Blazor control: File Upload documentation: ug @@ -9,7 +9,7 @@ documentation: ug # Template in Blazor File Upload Component -The template in the code snippet allows for the customization of how file details are displayed in the uploader's UI. It provides flexibility to define the structure and styling of individual file elements, such as file name, size, and status. This allows to create a tailored and visually appealing file upload interface that aligns with their application's design and user experience requirements. +The Blazor File Upload component allows for the customization of the file list items by using a template. This provides the flexibility to define the structure and styling of individual file elements, such as the file name, size, and status. A custom template can create a tailored and visually appealing file upload interface that aligns with an application's design and user experience requirements. ### With server-side API endpoint @@ -20,10 +20,12 @@ The template in the code snippet allows for the customization of how file detail -