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

[Solved] RadGrid textbox rendering

3 Answers 210 Views
Grid
This is a migrated thread and some comments may be shown as answers.
MikeL
Top achievements
Rank 1
MikeL asked on 11 May 2009, 03:59 PM
I have textboxes inside my RadGrid everything is fine apart from the rendering of the text boxes.

I am using a FormDecorator and a SkinManager set to WebBlue, which gives the nice bevelled edges on the corners of textboxes, giving them a rounded feel.

Textboxes outside of a RadGrid on my pages look correct.

However when I use a textbox inside of a RadGrid, the Textbox becomes broken. Its appears that the styling that makes up the rounded edge is fragmented and consists of a line then space then a column with 2 dots(where the rounded edges should be) then a space then another column with 2 dots, then then are the two horizontal lines (top and bottom) of the text box, then once again the fragmented edges for closure.

How can I resolve this problem? Below is an example of one the the columns inside the RadGrid.

<telerik:GridTemplateColumn HeaderText="Limit" UniqueName="Limit"
                                        <itemtemplate> 
                                            <asp:TextBox 
                                                width="50" 
                                                ID="LimitTextBox" 
                                                runat="server"  
                                                Text='<%# Eval("Limit") %>'  
                                            </asp:TextBox> 
                                        </itemtemplate> 
                                    </telerik:GridTemplateColumn> 

3 Answers, 1 is accepted

Sort by
0
MikeL
Top achievements
Rank 1
answered on 12 May 2009, 12:59 PM
shameless bump. Any answers for this?
0
Dimo
Telerik team
answered on 13 May 2009, 01:49 PM
Hi Mike,

I suppose that you are seeing this in IE6. Please add the following CSS rule to your website:

table.rfdRoundedWrapper  td,  /*for Q1 2009*/ 
table.radfd_roundedWrapper  td   /*for Q3 2008*/ 
{  
    padding:0px !important;  
    border:0px !important;  
}  


The above workaround will not be needed in the next release (Q1 2009 SP2).


Greetings,
Dimo
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
MikeL
Top achievements
Rank 1
answered on 13 May 2009, 01:59 PM
Many thanks Dimo, this resolved the problem
Tags
Grid
Asked by
MikeL
Top achievements
Rank 1
Answers by
MikeL
Top achievements
Rank 1
Dimo
Telerik team
Share this question
or