Background:
I have a gridview which is very wide. Some of the headers have a space in them. Because of this the second word of each header is wrapped to the second line. How do I prevent this?
Previous Attempts:
So far, I've tried the following with no luck.
<ItemStyle Wrap="False" />
property in the <boundfield...>
tagHeaderStyle-Wrap="false"
attribute in the gridview tagWrap="false"
in the <headerstyle
tagSceenShot
Question:
How do I prevent the header text in a gridview from autowrapping in a very wide gridview?
What I ended up doing was just creating an arbitrarily large width for the gridview as to let it have enough room. The only downfall to this is that it doesn't dynamically grow and shrink depending on how much space it actually needs. Not a real solution so if somebody has a better solution post it.