I develop a website with ASP.NET(C# Webform) and Visual Studio 2012. I use RadTabStrip with RadMultiPage in my webpage, but I deploy to IIS. And then I use my iPad mini to switch rad tab, it appear error message as below:
「safari error a problem occurred with this webpage so it was reloaded」
in Chinese is:
「此網頁發生錯誤,因此重新載入。」
or
Safari 無法打開網頁
錯誤碼為 WebKit encountered an internal error
I run the same website on Android device(SAM SUNG Galaxy Tab4). There is no problem during I switch the webpages.
Does somebody know how to resolve this problem? Is it belong trail version problem?
It looks like the CSS gets messed up in chrome on the Upload dialog. Is there a CSS fix that can correct this?
I attached a screenshot of the difference between Chrome and IE and can provide an example project of recreating the issue if need be.

My grid
<telerik:RadGrid ID="RadGridOpenCases" runat="server" AutoGenerateColumns="False" DataSourceID="odsOpenCases" AllowPaging="True" PageSize="10" AllowSorting="True" AllowFilteringByColumn="true" Skin="Bootstrap"> <ExportSettings ExportOnlyData="true" IgnorePaging="true"></ExportSettings> <MasterTableView CellSpacing="-1" DataKeyNames="CaseID" DataSourceID="odsOpenCases" EnableNoRecordsTemplate="True" AllowFilteringByColumn="True" CommandItemDisplay="Top"> <CommandItemSettings ShowExportToExcelButton="true" ShowAddNewRecordButton="false" ShowRefreshButton="false" /> <Columns> <telerik:GridBoundColumn DataField="casenumber" HeaderText="Case #" SortExpression="casenumber" UniqueName="casenumber" ItemStyle-Wrap="false" AutoPostBackOnFilter="true" ShowFilterIcon="false" /> <telerik:GridBoundColumn DataField="subject" HeaderText="Case Name" SortExpression="subject" UniqueName="subject" AutoPostBackOnFilter="true" ShowFilterIcon="false" /> <telerik:GridDateTimeColumn DataField="datereceived" HeaderText="Received" SortExpression="datereceived" PickerType="DatePicker" EnableTimeIndependentFiltering="true" DataFormatString="{0:MM/dd/yyyy}" /> <telerik:GridBoundColumn DataField="subdivisiondesc" HeaderText="Type" SortExpression="subdivisiondesc" UniqueName="subdivisiondesc" AutoPostBackOnFilter="true" ShowFilterIcon="false" /> <telerik:GridBoundColumn DataField="categorydesc" HeaderText="Category" SortExpression="categorydesc" UniqueName="categorydesc" AutoPostBackOnFilter="true" ShowFilterIcon="false" /> <telerik:GridBoundColumn DataField="subcategorydesc" HeaderText="SubCategory" SortExpression="subcategorydesc" UniqueName="subcategorydesc" AutoPostBackOnFilter="true" ShowFilterIcon="false" /> <telerik:GridBoundColumn DataField="assignedto" HeaderText="Assigned To" SortExpression="assignedto" UniqueName="assignedto" AutoPostBackOnFilter="true" ShowFilterIcon="false" /> <telerik:GridBoundColumn DataField="casedoccount" HeaderText="" SortExpression="casedoccount" UniqueName="casedoccountid" AllowFiltering="false" /> </Columns> <NoRecordsTemplate> <p style="padding: 20px;">No cases to display</p> </NoRecordsTemplate> </MasterTableView> <GroupingSettings CaseSensitive="false" /> <ClientSettings EnableRowHoverStyle="true" EnablePostBackOnRowClick="true"> <Selecting AllowRowSelect="True" /> </ClientSettings> </telerik:RadGrid>Protected Sub RadGridOpenCases_ItemCommand(ByVal sender As Object, ByVal e As GridCommandEventArgs) Handles RadGridOpenCases.ItemCommand If e.CommandName = RadGrid.ExportToExcelCommandName Then RadGridOpenCases.ExportSettings.Excel.Format = GridExcelExportFormat.Biff RadGridOpenCases.ExportSettings.IgnorePaging = True RadGridOpenCases.ExportSettings.ExportOnlyData = True RadGridOpenCases.ExportSettings.OpenInNewWindow = True RadGridOpenCases.ExportSettings.FileName = "Dashboard" End IfEnd Sub
Since last Chrome update version 58 we have visual bugs in ours RadWindow. We found out that it was because of that css class :
html:first-child .RadWindow ul {
float: right;
border: 1px solid transparent;
}
It is automatically included in the Telerik.Web.UI.WebResource.axd comming from Telerik.Web.UI.Skins.Window.css. We first tough that it was a Chrome bug, but after investigating a little bit more, we realized that chrome was proccessing that css class like it is supposed to. We also found out that firefox is also processing that class the same way as Chrome do. Is there a way to remove that css?
thanks
Hi friends,
I want to create a menu like following link in server side. that's great menu style.
http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/templates/defaultcs.aspx
I made a research and there are tons on questions about how to achieve it most of them answered by telerik team "partially" yet there's no complete answer.
I wonder is there a reason why a complete simple answer for creating the menu at above link never exists ? questions and answers are still there since 2012 and no complete example ?
came on guys, can you please provide official code that works on server side and generates a menu at link above ? no need complex application scenarios or anything. obviously people still need it.
Also the reason we buy telerik products is simplify our tasks.
Please can you solve my problem. obviously I don't want my programmers to spent more time on discovering telerik menu item. (by the way its great item:)
best.
Hi,
On Telerik RT version v4.0.30319 the ul & li formatting isnt working on the recurrence editor of a radScheduler - please see attached pic.
Please can someone offer some css ideas to format the opt boxes to the left of the labels? This is driving me mad.
Thanks so much,
CB.
Hello ,
Can any body help me with the below design in telerik using LinearGauge Horizontal ..
Please reply asap..Thanks.
Hello I am using RadProgress bar of chunk type,
When the chunkCount = 3 it generates incorrect width style for completed steps, it uses the comma instead of the dot so 33,33334% instead of 33.33334%.
So that it is not working as expected.
version: Telerik_UI_for_ASP.NET_AJAX_2016_2_607_Dev
code behind:
rpb_reviewMail.MaxValue = dataTable.Rows.Count;
rpb_reviewMail.ChunksCount = dataTable.Rows.Count;
rpb_reviewMail.Value = currentStep;
aspx:
<telerik:RadAjaxPanel runat="server">
<telerik:RadProgressBar RenderMode="Lightweight" runat="server" BarType="Chunk" Skin="MetroTouch" MinValue="0" Width="100%">
</telerik:RadProgressBar>
</telerik:RadAjaxPanel>
When I add RadGrid, the web appears the error message when I switch webpages on my ipad mini : safari error a problem occurred with this webpage so it was reloaded. But android device(SAM SUNG Galaxy Tab4) is all right. Does somebody know how to solve this problem?