Is there a way to display the headerText of the Grid View vertically?
http://img371.imageshack.us/img371/4813/testyk6.jpg
I hope the above link works
Thanks
|
|
Is there a way to display the headerText of the Grid View vertically? http://img371.imageshack.us/img371/4813/testyk6.jpg I hope the above link works Thanks
|
||
|
|
|
|
I believe you'd have to use images. Either created at design time, or using a HttpHandler to generate images at run-time if they need to be dynamic. Make all of your fields use TemplateFields and place the image in the HeaderTemplate. Kind of tedious, but it's the only way I can think. Perhaps some third party grid controls can handle this. |
||
|
|
|
|
Silverlight can do this (as can Flash, I'm sure). CSS3 will support it. But graphic text is the way to go right now. You can use any of several text-hiding techniques in CSS to show the text for accessible browsers, yet display the graphic (with text arranged vertically) for sighted users. |
||
|
|
|
|
Stu Nicholls has an interesting HTML/CSS technique, if a bit HTML verbose. However, it doesn't do the word rotation that you're looking for. Just throwing out another option. |
||
|
|
|
|
If you don't mind an IE only solution, you could use some of the css filters that IE supports. Something like this:
|
||
|
|
|
|
set |
||
|
|
|
|
I've done it IE using the following CSS although it might be limited to browser, version etc... writing-mode: tb-rl; filter: flipv fliph |
||
|
|
|
In IE7+ you can use the DX transform:
In older IE (for the poor souls still stuck with it):
In Safari/Chrome (anything webkit based) you can use the transform:
The latest FX builds have an equivalent:
But that's not mainstream yet. I've been trying to do this with graphic text, but have a few problems. |
||
|
|