Skip to main content

Jquery JQGrid - How to set alignment of grid header cells?


Is it possible to align grid column headers in jqgrid? eg align left right or center?



In the jqrid documents http://www.trirand.com/jqgridwiki/doku.php?id=wiki:colmodel_options it says:




align: Defines the alignment of the cell in the Body layer, not in header cell.
Possible values: left, center, right.



Note that it says "not in the header cell". How can I do this for the header cell (grid title cell)? The documentation fails to mention this little detail....


Source: Tips4allCCNA FINAL EXAM

Comments

  1. The best documented way to change column header alignment is the usage of setLabel method of jqGrid (see http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods).

    You can change alignment of the column identified by 'name': 'Name' with the following code:

    grid.jqGrid ('setLabel', 'Name', '', {'text-align':'right'});


    With the code

    grid.jqGrid ('setLabel', 'Name', 'Product Name', {'text-align':'right'},
    {'title':'My ToolTip for the product name column header'});


    you can change the header name to 'Product Name' and set 'My ToolTip for the product name column header' as a tool tip for the corresponding column header.

    You can also define some classes in your CSS and set it for the column headers also with respect of setLabel method.

    By the way the name of the function 'setLabel' is choosed because you can not define colNames parameter of the jqGrid, but use additional 'label' option in the colModel to define a column header other as the 'name' value.

    UPDATED: You can do able to use classes to define 'text-align' or 'padding'. Just try following

    .textalignright { text-align:right !important; }
    .textalignleft { text-align:left !important; }
    .textalignright div { padding-right: 5px; }
    .textalignleft div { padding-left: 5px; }


    and

    grid.jqGrid ('setLabel', 'Name', '', 'textalignright');
    grid.jqGrid ('setLabel', 'Description', '', 'textalignleft');


    (I defined 5px as the padding to see results better. You can choose the padding value which you will find better in your case).

    ReplyDelete
  2. Just go to your css file of your jqgrid.

    Look for:

    ui-th-column,.ui-jqgrid .ui-jqgrid-htable th.ui-th-column
    {overflow:hidden;white-space:nowrap;text-align:center; ...


    And change the text-align.

    I didn't find it eather with regular options.

    I hope this will help you.

    Bruno

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex