Excel file contents are not displayed properly in Aspose.GridWeb for Java

image.png (61.9 KB)
image.png (23.2 KB)
gridwebspringdemo21.4.3.zip (9.6 MB)
excel文件内容显示错位与艺术字未正常显示!
Excel file content display dislocation and art word not normal display!

@huosenyuan,

Thanks for the resource files and screenshots.

We have logged a ticket with an id “CELLSJAVA-43451” for your issue. We will look into it and try to fix the issue soon regarding incorrect display of Excel file contents and resolve the issue in the spring demos. Once we have an update on it, we will let you know here.

@huosenyuan,

Which IE browser version you are using? Also did you try using other versions of IE browser type (e.g. 8,9, etc.)?

5 to 11 are not available

另外,我们是否支持手机模式,我尝试了下,滑动不了。
In addition, whether we support mobile phone mode or not, I tried, but I couldn’t slide.


希望增加手机端表格滑动能力
Hope to increase the table sliding ability of mobile terminal

@huosenyuan,

Do you mean you cannot test it on IE5 - IE10? Are you using Microsoft Edge?

Could you please elaborate your needs and give more details about the issue with some screenshots (if possible). We will evaluate it soon.

Thank you very much. I added the mobile phone sliding event myself;

      this.viewTable.addEventListener("touchstart",
        function(e) {
            //e.preventDefault();
            startMX = e.touches[0].pageX,
            startMY = e.touches[0].pageY;
        },
        false);
    this.viewTable.addEventListener("touchmove",
        function(e) {
            console.log(1, gridweb.vsBar.scrollTop, gridweb.hsBar.scrollLeft)
            //e.preventDefault();
            moveEndX = e.touches[0].pageX,
            moveEndY = e.touches[0].pageY,
            X = moveEndX - startMX,
            Y = moveEndY - startMY;
            if ( Math.abs(X) > Math.abs(Y) && X > 0 ) {
                gridweb.hsBar.scrollLeft -= 3;
               }
               else if ( Math.abs(X) > Math.abs(Y) && X < 0 ) {
                gridweb.hsBar.scrollLeft += 3;
               }
               else if ( Math.abs(Y) > Math.abs(X) && Y > 0) {
                gridweb.vsBar.scrollTop -= 3
               }
               else if ( Math.abs(Y) > Math.abs(X) && Y < 0 ) {
                gridweb.vsBar.scrollTop += 3
               }
               else{
                console.log("just touch");
               }
            
            console.log(2, gridweb.vsBar.scrollTop, gridweb.hsBar.scrollLeft)
        },
        false);

The problem of IE scroll bar has been solved. Now ie9-11 can be displayed

@huosenyuan,

It looks like your issues (regarding mobile phone sliding and IE browser type) are resolved now. In the event of further queries or issue, feel free to write us back.

The issues you have found earlier (filed as CELLSJAVA-43451) have been fixed in this update.