开发者

Gridview column freeze not working in Mozilla

开发者 https://www.devze.com 2023-03-15 16:05 出处:网络
I am trying to freeze the first column of a gridview in asp.net. My css code is 开发者_运维问答

I am trying to freeze the first column of a gridview in asp.net. My css code is

开发者_运维问答
.CellLocked {
background-color:Gray;
position:relative;
left:expression(this.parentNode.parentNode.parentNode.parentNode.parentNode.scrollLeft-1);
}

It is fine in IE but not working in mozilla. Plz help. Thanks...


Set this in your css:

position:absolute;
0

精彩评论

暂无评论...
验证码 换一张
取 消