本文介绍了网格视图中的水平滚动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我需要一个gridview列,仅在水平滚动时冻结,垂直滚动时正常行为。



I应用了以下样式,但它在水平和垂直滚动上冻结了列

 td.locked 
{
position:relative;
left:expression(( this .parentElement.parentElement.parentElement.parentElement.scrollTop-2)+ ' px');
}



任何人都可以帮我解决这个问题。我搜索了很多但是相同的样式随处可见。

解决方案

Hi,
I need a gridview column to be freezed only on horizontal scroll and a normal behaviour on vertical scroll.

I applied the below style but it freezes the column on both horizontal and vertical scroll

td.locked
{
    position: relative ;
    left: expression((this.parentElement.parentElement.parentElement.parentElement.scrollTop-2)+'px');
}


Can anyone pls help me out on this. I have searched a lot but the same style is posted everywhere.

解决方案


这篇关于网格视图中的水平滚动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-03 06:04