My team upgrading the version from 2.4 to 22.5 to fix the Chrome browser issues. Below GridWeb properties (Worksheet) throwing following error. What is the equivalent property we can replace in new version.
Issue: 1
protected Aspose.Cells.GridWeb.Worksheet wksItems;
protected Aspose.Cells.GridWeb.Worksheet wksCustomers;
Error Details:
Compiler Error CS0234: The type or namespace name ‘name’ does not exist in the namespace ‘namespace’ (are you missing an assembly reference?)
WebWorksheet wks = this.acgwHeader.WebWorksheets[0];
Issue: 2
wks.EnableRowAddDelete = false;
//EnableROwAddDelete throwing the error in v22.5 when upgrading from v2.4
Issue: 3
Hyperlink hlinkVendorId = wks.Hyperlinks.AddHyperlink(row, 2);
//AddHyperlink throwing the error in v22.5 when upgrading from v2.4
Issue: 4
acgwItemDetail.InitializeNewBindRow += new InitializeNewBindRowHandler(acgwItemDetail_InitializeNewBindRow);
//InitializeNewBindRow throwing the error in v22.5 when upgrading from v2.4
Issue: 5
DataRowView info = acgwHeader.WebWorksheets[0].GetRowBindObject(cell.Row) as DataRowView ;
//GetRowBindObject throwing the error in v22.5 when upgrading from v2.4
Issue: 6
this.acgwVendorUOMExceptions.CustomCommand += new Aspose.Cells.GridWeb.CustomCommandEventHandler(acgwVendorUOMExceptions_CustomCommand);
//CustomCommandEventHandler throwing the error in v22.5 when upgrading from v2.4
Issue: 7
this.acgwVendorUOMExceptions.SaveCommand += new Aspose.Cells.GridWeb.WorkbookEventHandler(acgwVendorUOMExceptions_SaveCommand);
this.acgwVendorUOMExceptions.PageIndexChanged += new Aspose.Cells.GridWeb.WorkbookEventHandler(acgwVendorUOMExceptions_PageIndexChanged);
//WorkbookEventHandler throwing the error in v22.5 when upgrading from v2.4
Thanks in advance.