Hi lorryl,
Query #1: I cannot download the files from the link.
Before download the provided sample link, we suggest you to use You should use the Syncfusion credentials which is associated with the incident/ticket that has the file you are trying to download.
If still facing problem, please share video demonstration of the reproducing problem to us that will help to validate further.
Query #2: why not work when deleting row in this sample link
Based on your query we have achieved delete action in selected row when click on custom toolbar item. Please refer the below code example and sample for more information.
[app.component.ts]
toolbarClick(args) {
switch (args.item.id) {
case "bardelete":
let selectRows = this.grid.getSelectedRecords();
if (selectRows.length == 0) {
return;
}
let row: any = selectRows[0];
row.RowState = "Deleted";
this.grid.deleteRecord("OrderID", selectRows[0]);
break;
}
} |
Please get back to us, if you need further assistance.
Regards,
Balaji Sekar