Can I scroll in a column of a table?
-
Hello, there. I have about the problem about the table. I creat a table that was fixed width and heigth because I want to change the picture dynamic in each column. But one column need to bind the database, and the data won't fit to the fixed column. Can I only make this column scrollable and the other column fixed?? thanks for every response.
-
Hello, there. I have about the problem about the table. I creat a table that was fixed width and heigth because I want to change the picture dynamic in each column. But one column need to bind the database, and the data won't fit to the fixed column. Can I only make this column scrollable and the other column fixed?? thanks for every response.
Hi, by column do you mean all the cells in that column??. If so, then you may use ASP.NET Panel control in each cell and set the style property to "overflow:auto". This will make each cell of that particular column scrollable. But the limitation with this is : it works only with IE 5.5 above. In other browsers the scroll bars doesn't appear. regards, Aryadip. Cheers !! and have a Funky day !!
-
Hi, by column do you mean all the cells in that column??. If so, then you may use ASP.NET Panel control in each cell and set the style property to "overflow:auto". This will make each cell of that particular column scrollable. But the limitation with this is : it works only with IE 5.5 above. In other browsers the scroll bars doesn't appear. regards, Aryadip. Cheers !! and have a Funky day !!
-
I got it...Thank you very much. HaHa...I feel I am too stupid to ask this question because I am a beginner. Anyway,thank you again.
It is not a stupid question, not many people know of
overflow: auto
. Also it does work in most modern browsers, not just IE5.0 :) regards, Paul Watson Bluegrass South Africa Chris Maunder wrote: "I'd rather cover myself in honey and lie on an ant's nest than commit myself to it publicly." Jon Sagara replied: "I think we've all been in that situation before." Crikey! ain't life grand? -
It is not a stupid question, not many people know of
overflow: auto
. Also it does work in most modern browsers, not just IE5.0 :) regards, Paul Watson Bluegrass South Africa Chris Maunder wrote: "I'd rather cover myself in honey and lie on an ant's nest than commit myself to it publicly." Jon Sagara replied: "I think we've all been in that situation before." Crikey! ain't life grand?Yeah...exactly. After I saw your message, I went to library and rent a book(O'reilly Cascading Style Sheets). But I can find this attribute. May I ask you how can I get more information about it? Isn't it CCS ? Or it is offered from others that I never know? Thank you very much.