Hi,
As the title said, this happens only in IE browser. Any idea if this bug was fixed in newer versions of Telerik?
My version is 2013.3.1114.35 of Telerik.Web.UI
Thanks!
protected void RadGrd1_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e) { RadGrd1.DataSource = GridRecordSource; RadGrd1.MasterTableView.VirtualItemCount = ((DataTable)Application["_GridRowSource"]).Rows.Count; } private DataTable GridRecordSource { get { object RowSource= Application["_GridRowSource"]; if (RowSource!=null) { return RowSource as DataTable; } else { GridRowSource=UserBL.SelectAll("CustomerDetail"); Application["_GridRowSource"]=GridRowSource; // RadGrd1.CurrentPageIndex * RadGrd1.PageSize + " AND " + ((RadGrd1.CurrentPageIndex + 1) * RadGrd1.PageSize)); return GridRowSource; } } }<telerik:RadGrid runat="server" ID="RadGrd1" AutoGenerateColumns="False" GridLines ="Horizontal" ShowStatusBar="true" OnNeedDataSource="RadGrd1_NeedDataSource" OnDataBound="RadGrid1_DataBound" Skin="Outlook" Width="143px" > <MasterTableView Width="99%" AllowPaging="true" PageSize="50" AllowSorting="false" BorderStyle="None" ClientDataKeyNames="RecordID" TableLayout="Fixed" NoMasterRecordsText="Records not found in Customerdetail tables" > <Columns> <telerik:GridBoundColumn DataField="FirstName" HeaderText="Customer Name" UniqueName="FirstName" HeaderStyle-Height="122px" > </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="LastName" HeaderText="" UniqueName="LastName" Display="false" > </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Phonenumber" HeaderText="" UniqueName="Phonenumber" Display="false" > </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Email" HeaderText="" UniqueName="Email" Display="false" > </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="dob" HeaderText="" UniqueName="dob" DataType="System.DateTime" Display="false" > </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Country" HeaderText="" UniqueName="Country" Display="false" > </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="State" HeaderText="" UniqueName="State" Display="false" > </telerik:GridBoundColumn> </Columns> <CommandItemTemplate > </CommandItemTemplate> </MasterTableView> <PagerStyle Visible="false" /> <ClientSettings ReorderColumnsOnClient="true" AllowColumnsReorder="true" ColumnsReorderMethod="Reorder" > <ClientEvents OnRowSelecting="PushToDock"/> <Virtualization InitiallyCachedItemsCount="50" RetrievedItemsPerRequest="50" ItemsPerView="50" EnableVirtualization="true" LoadingPanelID="RadAjaxLoadingPanel1" /> <Selecting AllowRowSelect="true" /> <Scrolling ScrollHeight="200px" AllowScroll="True" EnableVirtualScrollPaging="true" UseStaticHeaders="true" /> <Resizing AllowColumnResize="true" /> </ClientSettings> <SelectedItemStyle Font-Bold="true" ForeColor="#000099" /> </telerik:RadGrid>function ShowEditForm(tcRecordID, rowIndex) { tcRecordID = $('input[id$=Recno]').val(); $('input[id$=Recno]').val(tcRecordID); // store the RecordID into asp hidden field so that recordposition will be thre var openwindow = window.radopen("EditAddRecord.aspx?RecordID=" + tcRecordID, "UserListDialog"); return false; }
I tired most of the examples on disabling dates on the raddatepicker control but most are out of date to the methods and properties of the latest control set. I looking for an example of how to only let SUNDAY be selected.
Thanks

<%
@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
<
assemblies>
<
add assembly="Infragistics2.WebUI.Shared.v10.3, Version=10.3.20103.2217, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
</
assemblies>
<
pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
<
controls>
<
add tagPrefix="igtbl" namespace="Infragistics.WebUI.UltraWebGrid" assembly="Infragistics2.WebUI.UltraWebGrid.v10.3"/>
<
add tagPrefix="igtblexp" namespace="Infragistics.WebUI.UltraWebGrid.ExcelExport" assembly="Infragistics2.WebUI.UltraWebGrid.ExcelExport.v10.3"/>
</
controls>
</
pages>
Dear Team,
We are using ShowSound property and it doesn't work in mobiles and tablets. However it is working fine in desktop browsers. I have already tried below code which i got from your website but still no difference.
<script type="text/javascript">function pageLoad() {//Attach to the document touchstart event and initiate the notification audio $telerik.$(document).on("touchstart", initSound);}function initSound() {var notification = $find("<%=RadNotification1.ClientID%>");//If notification audio is not available initiate itif (!notification.verifySound()) { notification.userInitSound();}//Detach the initSound event listener $telerik.$(document).off("touchstart", initSound);}</script><telerik:RadNotification RenderMode="Lightweight" ID="RadNotification1" runat="server" ShowInterval="2000" AutoCloseDelay="1000" Text="Some Notification" ShowSound="warning"></telerik:RadNotification>
I have also tried in code behind but result is same.
RadNotification1.ShowSound = ResolveUrl("~/Images/OrderReceived.wav");
Kindly let me know how we can enable sound on mobile/tablet devices.
Thanks & Regards,
Jatin Kumar Verma
Hi,
In the demo https://demos.telerik.com/aspnet-ajax/listview/examples/client/webservicedatabinding/defaultcs.aspx
It is possible to select an item without having a CommandName="Select" and the item can be click anywhere, and it selects.
In the code I am playing with, I have the data bound via code, but cannot get the item to select without a button.
You do not have a button within your demo, so how do you get it to work?
Many Thanks
Mark
Hello, I have a problem using EnableVirtualScrollPaging in asp.net RadGrid.
In the grid I have GridBoundColumn and GridTemplateColumn columns.
At server side put all rows with same height.
rdgLista.MasterTableView.ItemStyle.Height = 50;
rdgLista.MasterTableView.AlternatingItemStyle.Height = 50;
When I scroll down page 2 is load when I have not yet reached the end of page 1.
<ClientSettings>
<Resizing AllowRowResize="false" />
<Scrolling AllowScroll="true" EnableVirtualScrollPaging="True" UseStaticHeaders="true" SaveScrollPosition="true">
</Scrolling>
</ClientSettings>
Can you help?
Best Regards.

I'm using version 2010 Q1 309
I have 8 RadTabs, I want to auto adjust width when run on more screens. I tried set ScrollChildren = True, but UI broken