This is a migrated thread and some comments may be shown as answers.

Status bar missing using custom skin

1 Answer 77 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Matthew
Top achievements
Rank 1
Matthew asked on 08 Apr 2009, 05:12 PM
Greetings,

I'm using the Q1 2009 grid contol within Sharepoint 2007. I have the Grid.ShowStatusBar = True. However if use a custom skin the status bar will not show up. Is there something that I need to set to get the status bar to show?

Thanks,

-Matt

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 09 Apr 2009, 08:06 AM
Hello Matthew,

The status bar no longer exists as a separate table row. It is a table cell, part of the RadGrid pager. In order to apply styles to it, please use the following CSS rules:

.RadGrid_SkinName  .rgPager  .rgStatus
{
    width:35px;
    border:1px solid red;
}

.RadGrid_SkinName  .rgStatus  div
{
    width:24px;
    height:24px;
    overflow:hidden;
    border:0;
    margin:0 auto;
    padding:0;
    background:transparent center center no-repeat url('  loading image here  ');
    text-indent:-2222px;
}

Regards,
Dimo
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Tags
Grid
Asked by
Matthew
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or