[CLOSED] Group header align text bottom

Page 2 of 2 FirstFirst 12
  1. #11
    Quote Originally Posted by Baidaly View Post
    Try to set Column's Align to Center:

    <ext:Column ID="Column1" runat="server" DataIndex="TMEEnd" ColumnID="TMEEnd" Width="75" Align="Center">
        <HeaderItems>
            <ext:Label runat="server" Html="Metric" />
        </HeaderItems>
        <Listeners>
        </Listeners>
    </ext:Column>

    Yes, but then all of the columns data is centered, I want it right aligned...header centered.
  2. #12
    Add the following CtCls to the Label:

    <ext:Column ID="Column1" runat="server" DataIndex="company" Flex="1" Sortable="false" Align="Right">
        <HeaderItems>
            <ext:Label runat="server" Text="Company" CtCls="ux-header-label" />
        </HeaderItems>
    </ext:Column>
    and define this CSS:

    .ux-header-label {
        text-align: center;
    }
  3. #13
    Quote Originally Posted by Baidaly View Post
    Add the following CtCls to the Label:

    <ext:Column ID="Column1" runat="server" DataIndex="company" Flex="1" Sortable="false" Align="Right">
        <HeaderItems>
            <ext:Label runat="server" Text="Company" CtCls="ux-header-label" />
        </HeaderItems>
    </ext:Column>
    and define this CSS:

    .ux-header-label {
        text-align: center;
    }

    We have a winner! thanks for all you help on this one!
Page 2 of 2 FirstFirst 12

Similar Threads

  1. [CLOSED] GridPanel header group text oddity
    By rthiney in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Dec 13, 2013, 6:22 PM
  2. [CLOSED] Custom Grid Group Header Text
    By bayoglu in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: May 17, 2013, 3:38 PM
  3. [CLOSED] Change text in header group column.
    By pdcase in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Mar 09, 2011, 3:44 PM
  4. [CLOSED] CompositeField align bottom
    By SouthDeveloper in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 25, 2011, 1:53 AM
  5. group header text multiline problem
    By wp_joju in forum 1.x Help
    Replies: 0
    Last Post: Dec 21, 2010, 10:54 AM

Posting Permissions