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

grid formatting issues in Firefox 3

1 Answer 23 Views
Grid
This is a migrated thread and some comments may be shown as answers.
K
Top achievements
Rank 1
K asked on 09 Oct 2009, 03:07 PM
 In IE the column header text displays a "..." when the content is long. Is there a fix for grid headers which are spilling into ajoining columns?

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 09 Oct 2009, 03:14 PM
Hello K,

Only IE supports the text-overflow CSS property, due to which the three dots appear. For other browsers you can clip the text with

.RadGrid  .rgRow  td,
.RadGrid  .rgAltRow  td,
.RadGrid  .rgHeader
{
        overflow: hidden ;
}

The above CSS rule is not necessary for the latest RadGrid version, as it takes care of clipping overflowing text automatically.


For RadGrid versions older than Q1 2009 use

.RadGrid_SkinName  td
{
         overflow: hidden;
}


Kind regards,
Dimo
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Grid
Asked by
K
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or