Help me!How to change gridpanel's default font size?

  1. #1

    Help me!How to change gridpanel's default font size?

    i want to change the gridpanel's font size!The font size is too small,i want to chang it larger .thanks !
    and how to set the gridpanel's head text align an column item,now,i want to set head text align=center and set item aligh=right!
    thanks!
  2. #2

    RE: Help me!How to change gridpanel's default font size?

    Hello,

    Just create a stylesheet, add a reference of the stylesheet on your page and add the following;

    .gridFont .x-grid3-cell
    {
        font-family:Arial;
        font-size:12px;
    }
    in the Gridpanel add the following;

    <ext:GridPanel ID="grdControl" runat="server" Cls="gridFont">
     ..............................
    </ext:GridPanel>
    Hope it helps,
  3. #3

    RE: Help me!How to change gridpanel's default font size?

    Hello again,

    Actually, to only affect the row font use

    .gridFont .x-grid3-col
    {
        font-family:Arial;
        font-size:12px;
    }
    beacuse the prevoius sample I gave you, will also affect the header as well.
  4. #4

    RE: Help me!How to change gridpanel's default font size?

    thanks !it's very good
  5. #5
    Quote Originally Posted by egodoy View Post
    Hello again,

    Actually, to only affect the row font use

    .gridFont .x-grid3-col
    {
        font-family:Arial;
        font-size:12px;
    }
    beacuse the prevoius sample I gave you, will also affect the header as well.
    for ext.net 2.2 I changed .x-grid3-col into .x-grid-col

Similar Threads

  1. Font Size Change
    By megang in forum 1.x Help
    Replies: 1
    Last Post: Apr 09, 2012, 10:02 AM
  2. Replies: 0
    Last Post: Sep 27, 2011, 10:24 AM
  3. Change font/button size
    By plykkegaard in forum 1.x Help
    Replies: 0
    Last Post: Sep 02, 2010, 3:09 PM
  4. [CLOSED] how to change grid font size
    By sharif in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 16, 2010, 1:35 PM
  5. How to change default font of HTML Editor
    By VietView in forum 1.x Help
    Replies: 0
    Last Post: Mar 25, 2009, 8:22 AM

Posting Permissions