Hello,
I’m currently evaluating Aspose.Cells and the GridWeb component for my company.
I’ve managed to install and test the GridWeb SamplePage.jsp example, version 18.3.0, which I found in this forum, and it seems everything went fine, but I cannot make this simple example work properly with GridWeb version 19.2.0 (downloaded from Aspose.Cells | Excel Spreadsheet Processing Java Library).
At first I couldn’t even load SamplePage.jsp, but after looking into the release notes, I changed the line:
GridWebBean gridweb=BeanManager.getBean(request);
with:
BeanManager.setServlet(request,response);
GridWebBean gridweb=BeanManager.getBean();
Now I see the Excel file rendered, but the component is not working well: for instance, it doesn’t change sheet, the Save button saves an empty excel file, and other issues. There are no javascript errors in the console.
Could you please tell me what I’m doing wrong, or even better, provide a working SamplePage example zip for version 19.2.0, so that I can expand on it and test the various features described in the documentation?
Thank you very much!