Bug: When using the telerik Report Viewer in web forms and viewing that page in Internet Explorer the area where it shows the textbox for the Current page of #Total pages. When on the first page it will wrap the "of XX" to the next line until you either highlight the text or go to the next page. It's a minor cosmetic bug that was really driving my QA folks nuts.
Workaround fix: To fix this bug I added the following style
You need to use !important to make sure it overrides any of Telerik's built in styles.
Hopefully, this minor issue is corrected in the future.
Workaround fix: To fix this bug I added the following style
.PageNumberText
{
white-space:nowrap !important;
}
You need to use !important to make sure it overrides any of Telerik's built in styles.
Hopefully, this minor issue is corrected in the future.