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.
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> |
