Unplanned
Last Updated: 21 Dec 2021 09:35 by David Stacey
Pradeep
Created on: 05 Mar 2020 16:01
Category: Grid
Type: Bug Report
4
The Grid's Horizontal scrollbar is not visible in iOS when the grid is empty
The horizontal scrollbar is not visible in iOS when the grid is empty.

Code to reproduce the problem:
<style>
        html, body, body > form {
            height: 100%;
            padding: 0;
            margin: 0;
        }
    </style>
...
        <telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" Width="100%"
            AutoGenerateColumns="true"
            OnNeedDataSource="RadGrid1_NeedDataSource">
            <ClientSettings>
                <Scrolling AllowScroll="true" />
            </ClientSettings>
            <MasterTableView Width="1500px">
            </MasterTableView>
        </telerik:RadGrid>

    protected void RadGrid1_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
    {
        (sender as RadGrid).DataSource = GetData();
    }

    private object GetData()
    {
        DataTable dt = new DataTable();
        dt.Columns.Add("column1");
        dt.Columns.Add("column2");
        dt.Columns.Add("column3");
        dt.Columns.Add("column4");
        dt.Columns.Add("column5");
        dt.Columns.Add("column6");
        dt.Columns.Add("column7");
        dt.Columns.Add("column8");

        //dt.Rows.Add(1, 2, 3, 4, 5, 6, 7, 8);

        return dt;
    }
3 comments
David Stacey
Posted on: 21 Dec 2021 09:35
This doesn't effect only empty grids but all grids when using iOS and needs to be fixed
ADMIN
Attila Antal
Posted on: 25 Jan 2021 09:46

Hi Jasper,

Bug Reports and Feature requests are handled in an order based on First-On-First-Out. The priority of items can also change over time if the demand for those will become high. Currently, our developers have their Road Maps planned ahead and are working on items with higher priority and demand. ETA for Items with the status "Unplanned" is not known, hence we are unable to provide one. Once an item will go under development, an ETA will be provided right away.

Regards,
Attila Antal
Progress Telerik

jasper
Posted on: 18 Jan 2021 10:50

Hello,

 

Is there an update available for this issue? I can imagine that this is not a top priority issue, but how long do issues like this take before being resolved? What can I tell our customers? Do they have to wait for half a year, 3 years, 5?

 

Hoop to hear from you soon.

 

Kind Regards,

Thinkwise