Thank you for incorporating fixes.
This issue becomes solved with this.
Thank you for your reply.
I put the file in another uploader.
Please download from here.
If the language of the download page is not English, please select English by language selection in the upper right of the screen.
There should be a download button under the file name (jqGridScrollSample.zip).
Thank you for your reply.
I made a working example.
Since I uploaded it here, please check the operation.
upload file expiration date: 2018/06/19 10:25 – 2018/06/22 10:25
Thank you for your reply.
I investigated about this phenomenon again.
As a result, it turned out that it occurred with the following mechanism.
We apologize for the inclusion of information that we were missing in the system
|
1 2 3 4 |
/ * body * / .ui-jqgrid .ui-jqgrid-bdiv { overflow-y: scroll; } |
The following conditions are not satisfied and the vertical scroll width is not subtracted.
<JqGrid 5.3.1/src/jquery.jqGrid.js (line: 5228)>
|
1 2 3 4 |
if($($t.grid.bDiv)[0].clientHeight < $($t.grid.bDiv)[0].scrollHeight || $t.rows.length === 1){ hs = true; aw -= scw; } |
If the above code is set as follows, the phenomenon will not occur.
|
1 2 3 4 |
if($($t.grid.bDiv)[0].clientHeight < $($t.grid.bDiv)[0].scrollHeight || $t.rows.length === 1 || $($t.grid.bDiv).css('overflow-y') === 'scroll'){ hs = true; aw -= scw; } |
Should I implement this fix on my own?
Or can you officially respond?
Also, please let me know if there are other good ways.
Thank you for your reply.
The CSS framework uses Bootstrap v3.3.7.
Additional notes:
The phenomenon occurs when the vertical scroll bar is inactive.
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top