jQuery UI Widgets Forums Grid Grid Statusbar Aggregate Div background color

This topic contains 1 reply, has 2 voices, and was last updated by  Stanislav 6 years, 6 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author

  • dan123
    Participant

    Hi I have been trying to find a solution to change the background color of the aggregate statusbar. I am not sure if there is a specific css for it.

    i have tried class but only shows like red line not even completely shading in the statusbar
    .jqx-grid-statusbar {
    background: red;
    }

    I know there is something to also do with jqx-grid-cell-pinned class though not sure how to combine it with the statusbar.

    Here is the example:
    http://jsfiddle.net/8BE5w/372/


    Stanislav
    Participant

    Hello dan123,

    Here is a CSS/ID example of how to change the statusbar-background-color to red:
    If you want to use CLASS:

    
    .jqx-grid-statusbar div {
      background-color: red !important;
      border-right: none;
    }
    

    If you want to use ID:

    
    div[id^="statusbar"] div {
      background-color: red !important;
      border-right: none;
    }
    

    Best Regards,
    Stanislav

    jQWidgets Team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.