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

RadGrid VerticalScrollbar

3 Answers 27 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Prabha
Top achievements
Rank 1
Prabha asked on 26 Aug 2014, 06:02 AM
Hi All,

I have used Radgrid in my application. when i am open my app in Chrome or firefox there is no prob on design. But in IE10 , the background color of the vertical scroll bar will be in Black color. how to remove that color from scroll bar. Here with i have attached the sample for that. In that image i have to remove the black color.

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 26 Aug 2014, 12:17 PM
Hi Prabha,

With so less information its hard to identify the issue. Can you check if you have a RadFormDecorator on the page with Black skin. If this is the cause for the unwanted behaviour please remove the Skin or set the one you use for the RadGrid control. Provide your code snippet if this doesn't help.

Thanks,
Shinu
0
Prabha
Top achievements
Rank 1
answered on 26 Aug 2014, 12:43 PM
Hi Shinu,

Actually we used Office2007 Skin only. im unable to send the code snippet for ur ref. bz we have used master and many reference files.  And also my problem is in IE only. I dont get this in Chrome and all.
0
Shinu
Top achievements
Rank 2
answered on 27 Aug 2014, 06:10 AM
Hi Prabha,

Please try the sample code snippet. Can you try to replicate the issue with this. My Telerik version is 2014.2.618.40.

ASPX:
<telerik:RadGrid ID="rgrdSample" runat="server" AutoGenerateColumns="false" AllowPaging="true" AllowSorting="true" AllowFilteringByColumn="true" EnableLinqExpressions="false" Skin="Office2007" OnNeedDataSource="rgrdSample_NeedDataSource">
    <MasterTableView CommandItemDisplay="Top">
        <Columns>
            <telerik:GridBoundColumn DataField="ID" HeaderText="ID" UniqueName="ID" />
            <telerik:GridBoundColumn DataField="Name" HeaderText="Name" UniqueName="Name" />
            <telerik:GridBoundColumn DataField="Number" HeaderText="Number" UniqueName="Number" />
        </Columns>
    </MasterTableView>
    <ClientSettings Scrolling-AllowScroll="true"></ClientSettings>
</telerik:RadGrid>

C#:
protected void rgrdSample_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
{
    DataTable dt = new DataTable();
    dt.Columns.Add(new DataColumn("ID", typeof(int)));
    dt.Columns.Add(new DataColumn("Name", typeof(string)));
    dt.Columns.Add(new DataColumn("Number", typeof(int)));
 
 
    int i;
    for (i = 0; i < 100; i++)
    {
        DataRow dr = dt.NewRow();
        dr["ID"] = i;
        dr["Name"] = "CustomerName" + i;
        dr["Number"] = 10+i;
        dt.Rows.Add(dr);
    }
    rgrdSample.DataSource = dt;
}

Thanks,
Shinu
Tags
Grid
Asked by
Prabha
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Prabha
Top achievements
Rank 1
Share this question
or