1
Bug Report / Re: The vertical scroll behavior in the Frozen Columns area is abnormal
« on: December 29, 2025, 11:24:17 am »
Based on the hint provided by Jplevene, I have implemented a CSS-based workaround to bypass the bug for the time being.
I noticed that when Frozen Columns are applied, the fixed elements are wrapped inside <div class="pq-cont-inner pq-cont-left">...</div>
To address the issue in this structure, I added the following CSS.
.pq-cont-inner.pq-cont-left {
overflow-block:auto;
scrollbar-width:none;
}
I noticed that when Frozen Columns are applied, the fixed elements are wrapped inside <div class="pq-cont-inner pq-cont-left">...</div>
To address the issue in this structure, I added the following CSS.
.pq-cont-inner.pq-cont-left {
overflow-block:auto;
scrollbar-width:none;
}
