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

toolbar is not rendering all items

1 Answer 81 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Azeheruddin khan
Top achievements
Rank 1
Azeheruddin khan asked on 12 Aug 2010, 07:26 AM
Dear All,

I am using telerik report in mvc 2.0,I am getting report but report toolbar is not clear.

1 Answer, 1 is accepted

Sort by
0
Chavdar
Telerik team
answered on 13 Aug 2010, 07:51 AM
Hi Azeheruddin khan,

This issue is caused by the Site.css style sheet which defines the styles in a new ASP.NET MVC 2 application. It specifies global styles for all table, table td and table th html elements without any restrictions which causes the problem. To fix the report viewer appearance, please remove these styles from the Site.css, clear the browser's cache (from Tools | Internet Options | General tab | Browsing History - Delete button and refresh the page. To customize table elements you can always create a custom style class and use the class attribute of the respective html elements to point to this class.

Copy Code
/* TABLE
----------------------------------------------------------*/
 
table
{
  border: solid 1px #e8eef4;
  border-collapse: collapse;
}
 
table td
{
  padding: 5px;  
  border: solid 1px #e8eef4;
}
 
table th
{
  padding: 6px 5px;
  text-align: left;
  background-color: #e8eef4;
  border: solid 1px #e8eef4;  
}

Hope this helps.

Sincerely yours,
Chavdar
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
General Discussions
Asked by
Azeheruddin khan
Top achievements
Rank 1
Answers by
Chavdar
Telerik team
Share this question
or