Hi
I'm using the new radgrid and when in design time I can see the images for "Add New Record" and ""Refresh"
However when I run my project those buttons now only contain gray blocks.
Why is the images not showing during run-time?
Thanks
I'm using the new radgrid and when in design time I can see the images for "Add New Record" and ""Refresh"
However when I run my project those buttons now only contain gray blocks.
Why is the images not showing during run-time?
Thanks
| <telerik:RadGrid ID="RadGrid1" runat="server" GridLines="None" Skin="Telerik"> |
| <MasterTableView AutoGenerateColumns="False" CommandItemDisplay="TopAndBottom" EditMode="InPlace" DataKeyNames="UserName"> |
| <RowIndicatorColumn Visible="False"> |
| <HeaderStyle Width="20px" /> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn Resizable="False" Visible="False"> |
| <HeaderStyle Width="20px" /> |
| </ExpandCollapseColumn> |
| <Columns> |
| <telerik:GridButtonColumn CommandName="Select" Text="Select" UniqueName="column1"> |
| <HeaderStyle Width="15px" /> |
| </telerik:GridButtonColumn> |
| <telerik:GridBoundColumn HeaderText="User Name" UniqueName="UserName" DataField = "UserName"> |
| <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" |
| Font-Underline="False" Wrap="False" /> |
| <ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" |
| Font-Underline="False" Wrap="False" /> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="EmailAddress" HeaderText="Email Address" UniqueName="column"> |
| <HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" |
| Font-Underline="False" Wrap="False" /> |
| <ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" |
| Font-Underline="False" Wrap="False" /> |
| </telerik:GridBoundColumn> |
| <telerik:GridEditCommandColumn> |
| <HeaderStyle Width="15px" /> |
| </telerik:GridEditCommandColumn> |
| <telerik:GridButtonColumn CommandName="Delete" Text="Delete" UniqueName="column2" ConfirmText="Are you sure you want to delete the selected row?" > |
| <HeaderStyle Width="15px" /> |
| </telerik:GridButtonColumn> |
| </Columns> |
| <EditFormSettings> |
| <FormTemplate> |
| |
| </FormTemplate> |
| <PopUpSettings ScrollBars="None" /> |
| <EditColumn UniqueName="EditCommandColumn1"> |
| </EditColumn> |
| </EditFormSettings> |
| </MasterTableView> |
| </telerik:RadGrid> |
