Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1905
igGrid Vertical Header Text
posted

I want to show my header text vertically to save horizontal space.  What is the best way to accomplish this using 2014.2?

Parents
No Data
Reply
  • 20255
    Offline posted

    Hello rsimm.

    Thank you for contacting us!

    As I understand you want to align the text within igGrid headers vertically. I have created a sample for you in order to show you this approach. As you can see from the sample I am overriding the css class .ig-iggrid-headertext with:

    .ui-iggrid-headertext {
                display: inline-block;
                vertical-align: middle;
                white-space: normal;
            }

    Online sample:

    http://jsfiddle.net/zdravko/hbo3xbrb/2/

    I hope that you will find the sample helpful.

Children