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

How to remove scroll bar from Radpanel item

2 Answers 202 Views
PanelBar
This is a migrated thread and some comments may be shown as answers.
Arpit
Top achievements
Rank 1
Arpit asked on 12 Dec 2017, 07:40 AM
I am attaching the image. How can i remove scroll bar from radpanel items.

2 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 12 Dec 2017, 02:59 PM
Hi Arpit,

Can you provide a live URL to the problematic page or a runnable project where we can examine the generated markup and controls configuration?

You can also try to resolve the issue yourself using the HTML Inspector of the browser dev toolbar. Select the scrollbar, figure out which CSS class/property is causing it, search for overflow, and overwrite it.

Best regards,
Rumen
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Arpit
Top achievements
Rank 1
answered on 13 Dec 2017, 07:02 AM

Hi Rumen,

Thanks for your guidance. Using html inspector , resolved it.

Posting the style for other friends, if they are facing the same issue.

 

<style>

         /*To hide scroll bar*/
        .RadPanelBar .rpGroup{
            overflow-y:hidden !important;
        }

</style>

Tags
PanelBar
Asked by
Arpit
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Arpit
Top achievements
Rank 1
Share this question
or