I have the following grid:
When viewing the website on an iphone or windows phone device, it behaves as expected and the RowSnglClick javascript function is called. But on android, with Chrome 33.0 nothing happens. But note that the double click event is firing.
I also noticed that you can't scroll over the grids. Scrolling and drag and drop are not enabled on the grid, so I figured that you should be able to scroll over it on the page, but if you touch it and move, again nothing happens.
I'm using v2013.3.1324.45 of the controls.
Are there any simple fixes that I'm missing for everything to work on Android?
<telerik:RadGrid ID="RGSearch" runat="server" CssClass="grid-mobileResponsive" GridLines="none" PageSize="20" AutoGenerateColumns="false" AllowSorting="True" AllowPaging="True" AllowFilteringByColumn="False" AllowMultiRowSelection="False"> <MasterTableView DataKeyNames="Id" AllowMultiColumnSorting="true"> <Columns> <telerik:GridBoundColumn HeaderText="Id" DataField="Id" Display="false" /> <telerik:GridBoundColumn HeaderText="Val 1" DataField="val1" /> <telerik:GridBoundColumn HeaderText="Val 2" DataField="val2" /> <telerik:GridBoundColumn HeaderText="Val 3" DataField="val3" /> </Columns> </MasterTableView> <PagerStyle Mode="NextPrevAndNumeric" PagerTextFormat="{4} Page {0} of {1} | Displaying rows {2}-{3} of {5}" /> <ClientSettings Selecting-AllowRowSelect="true"> <Resizing AllowColumnResize="true" ResizeGridOnColumnResize="true" AllowResizeToFit="true" /> <ClientEvents OnRowDblClick="RowDblClick" OnRowClick="RowSnglClick" /> </ClientSettings></telerik:RadGrid>When viewing the website on an iphone or windows phone device, it behaves as expected and the RowSnglClick javascript function is called. But on android, with Chrome 33.0 nothing happens. But note that the double click event is firing.
I also noticed that you can't scroll over the grids. Scrolling and drag and drop are not enabled on the grid, so I figured that you should be able to scroll over it on the page, but if you touch it and move, again nothing happens.
I'm using v2013.3.1324.45 of the controls.
Are there any simple fixes that I'm missing for everything to work on Android?