I am using the RadGrid in a page - but for some reason it displays without any skin / styling. The grid is in a usercontrol - and I have a RadFormDecorator declared in the main page.
Here is the code I am using to display the grid:
And here is how it looks:
Rendered Grid
Any idea on why all the style would be missing?
Here is the code I am using to display the grid:
<
telerik:RadGrid
ID
=
"AddUserGrid"
AutoGenerateColumns
=
"false"
ShowFooter
=
"true"
Width
=
"400px"
runat
=
"server"
>
<
PagerStyle
Mode
=
"NextPrevAndNumeric"
/>
<
MasterTableView
AutoGenerateColumns
=
"false"
TableLayout
=
"Auto"
ShowFooter
=
"true"
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"email"
HeaderText
=
"Email"
/>
<
telerik:GridBoundColumn
DataField
=
"username"
HeaderText
=
"UserName"
/>
</
Columns
>
</
MasterTableView
>
<
ClientSettings
>
<
Selecting
AllowRowSelect
=
"true"
/>
</
ClientSettings
>
</
telerik:RadGrid
>
And here is how it looks:
Rendered Grid
Any idea on why all the style would be missing?