Skip to content

Commit fa5e363

Browse files
Merge branch 'development' into 983466-AI-SmartPaste
2 parents 85db916 + ca59d15 commit fa5e363

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

blazor/treegrid/editing/edit.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ Perform the CRUD operations like **Add**, **Update**, **Delete** by using the `A
640640
public async Task Update()
641641
{
642642
TreeData.BusinessObject data = new TreeData.BusinessObject() { TaskId = 1,TaskName = "Updated Task",Duration = 45,Progress = 50,Priority = "Low",ParentId = null };
643-
await this.treegrid.UpdateRow(1, data);
643+
await this.treegrid.UpdateRowAsync(1, data);
644644
}
645645

646646
public async Task Delete()
@@ -1022,3 +1022,4 @@ public class TreeData
10221022
## See also
10231023

10241024
* [Cascading DropDownList while Editing in Blazor TreeGrid](https://www.syncfusion.com/forums/175409/cascading-dropdown-dont-work-inside-grid-dialog-form-template)
1025+

blazor/treegrid/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2114,7 +2114,7 @@ The [DetailDataBound](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Tr
21142114
{
21152115
if (Args.Item.Text == "Excel Export")
21162116
{
2117-
await this.TreeGrid.ExcelExportAsync();
2117+
await this.TreeGrid.ExportToExcelAsync();
21182118
}
21192119
}
21202120
public void ExcelQueryCellInfoHandler(ExcelQueryCellInfoEventArgs<BusinessObject> args)

blazor/treegrid/print.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Print in Blazor TreeGrid Component
1111

12-
To print the Tree Grid, use the [PrintAsync](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor~Syncfusion.Blazor.TreeGrid.SfTreeGrid~Print.html) method from the tree grid instance. The print option can be displayed on the [Toolbar](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor~Syncfusion.Blazor.TreeGrid.SfTreeGrid~Toolbar.html) by adding the **Print** toolbar item.
12+
To print the Tree Grid, use the [PrintAsync](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.SfTreeGrid-1.html#Syncfusion_Blazor_TreeGrid_SfTreeGrid_1_PrintAsync) method from the tree grid instance. The print option can be displayed on the [Toolbar](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor~Syncfusion.Blazor.TreeGrid.SfTreeGrid~Toolbar.html) by adding the **Print** toolbar item.
1313

1414
{% tabs %}
1515

@@ -258,4 +258,4 @@ In the below example, we have **Duration** as a hidden column in the tree grid.
258258

259259
When tree grid contains large number of data, printing all the data at once is not a best option for the browser performance. Because to render all the DOM elements in one page will produce performance issues in the browser. It leads to browser slow down or browser hang.
260260

261-
If printing of all the data is still needed, we suggest to Export the tree grid to **Excel** or **CSV** or **Pdf** and then print it from another non-web based application.
261+
If printing of all the data is still needed, we suggest to Export the tree grid to **Excel** or **CSV** or **Pdf** and then print it from another non-web based application.

blazor/treegrid/rows/row-drag-and-drop.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1068,12 +1068,14 @@ public class WrapData
10681068

10691069
![Drag and Drop Row between Different Blazor Tree Grid](../images/blazor-treegrid-drag-drop-row.png)
10701070

1071-
N> [IsPrimaryKey](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.TreeGridColumn.html#Syncfusion_Blazor_TreeGrid_TreeGridColumn_IsPrimaryKey) is necessary to perform RowDragandDrop operations.
1071+
N> [IsPrimaryKey](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.TreeGridColumn.html#Syncfusion_Blazor_TreeGrid_TreeGridColumn_IsPrimaryKey) is necessary to perform Row Drag and Drop operations.
10721072

10731073
## Drag and drop events
10741074

10751075
The following events are triggered while drag and drop the tree grid rows.
10761076

1077-
[RowDragStarting](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.TreeGridEvents-1.html#Syncfusion_Blazor_TreeGrid_TreeGridEvents_1_OnRowDragStart) -Triggers when starts to drag the tree grid row.
1077+
[RowDragStarting](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.TreeGridEvents-1.html#Syncfusion_Blazor_TreeGrid_TreeGridEvents_1_RowDragStarting) -Triggers when starts to drag the tree grid row.
10781078

10791079
[RowDropped](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.TreeGridEvents-1.html#Syncfusion_Blazor_TreeGrid_TreeGridEvents_1_RowDropped) - Triggers when a drag element is dropped on the target element.
1080+
1081+

0 commit comments

Comments
 (0)