Hi,
Hi Romain,
Hi,
Please try our latest version/fix: Aspose.Cells for .NET (Latest Version) package and get the latest version of Aspose.Cells.GridWeb from your installation directory).
Please replace the “acwmain.js” file in your resource folder (e.g “…\acw_client”) with the attached “acwmain.js” file. Also, when updating client js scripting file, don’t forget to delete cache in your browser.
Your issue (“CELLSNET-44250”) should be fixed.
Let us know your feedback.
Thank you.
Hi,
Hi Romain,
I am afraid, I am not able to understand the contents in your snapshot as they are not in English, however, I was able to observe a JavaScript error in a sample application which look similar due to the mentioned line number (1657) on which error was triggered. Could you please review the attached snapshot and confirm so I can log it for immediate attention by the product team?
Error : 0x800a138f - JavaScript runtime error: Unable to get property ‘appendChild’ of undefined or null reference
Details : Unhandled exception at line 1657, column 5 in http://localhost:50582/acw_client/acwmain.js
Hi,
Indeed the error you get is the same than mine.
I just have a question… Do you test the control before to release it? It’s not the first time it occurs…
Thank you,
Hi again,
Hi,
Thanks for you answer,
I hope it will be fixed quickly.
Waiting for any update about my issues.
- JavaScript's init method has been renamed (to menuinit) and is being used internally by the GridWeb component only therefore if you have used this method in your code, you may receive an error about init method not being available.
- Aspose.Cells.GridWeb now supports IE 11 directly therefore you can remove the IE compatible setting code from the ASPX file. Moreover, the Aspose.Cells.GridWeb component now support Document Mode equal to or above 9.0.
- Regarding the ticket CELLSNET-44250, please note that the WebWorksheet class has been marked obsolete therefore you should use the GridWorksheet class instead of WebWorksheet. It has the methods SetAllCellsReadonly & SetAllCellsEditable which should suffice your requirement to mark all cells of a sheet read-only and editable respectively. The updated code will look as follow.
{
var activeSheet = GridWeb1.ActiveSheet;
activeSheet.SetAllCellsReadonly();
}
protected void Button2_Click(object sender, EventArgs e)
{
var activeSheet = GridWeb1.ActiveSheet;
activeSheet.SetAllCellsEditable();
}
Hi,
Hi Romain,
Hi,
The issues you have found earlier (filed as CELLSNET-44250;CELLSNET-44264) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.