RadPivotGrid1.FilterByValue(PivotGridFilterFunction.IsGreaterThan, pivotGridField, RadPivotGrid1.Fields.GetFieldByUniqueName("Butce") as PivotGridAggregateField, "0", true);RadPivotGrid1.FilterByValue(PivotGridFilterFunction.IsGreaterThan, pivotGridField, RadPivotGrid1.Fields.GetFieldByUniqueName("Fiili") as PivotGridAggregateField, "0", true);Hi,
We've implemented RADSchedular control for our application. Scheduler control running properly in every browser except Internet Explorer 10 (IE 10).
In case of IE 10
1. Scheduler layout is not showing properly. (Please see the attached image - Schedular_IE_10.png)
2. Right click event is now working.
Whereas in Chrome it shows the proper layout. (Schedular_In_Chrome.png)
We've make some changes according to these instructions -
http://www.telerik.com/community/forums/aspnet-ajax/general-discussions/javascript-errors-in-ie10-and-the-site-is-working-fine-in-the-rest-browsers.aspx
We've followed "SITE-ONLY FIXES", but we are unable to solve the issue.
Development Environment
.NET Framework - 4.0.
Windows 7.
Visual Studio 2010.
Telerik.Web.UI - 2012.1.411.40
Telerik.Web.UI.Skins - 2012.1.411.40
Thanks in advance for your valuable inputs.
Thanking you.
Best Regards,
Pratap
protected void RadGridFailureReportSearch_PreRender(object sender, EventArgs e) { string strPreviousFailureReportNbr = string.Empty; foreach (GridItem item in RadGridFailureReportSearch.MasterTableView.Items) { GridEditableItem editedItem1 = (GridEditableItem)item; if (editedItem1.GetDataKeyValue("ID").ToString() != strPreviousFailureReportNbr) { strPreviousFailureReportNbr = editedItem1.GetDataKeyValue("ID").ToString(); if (item is GridEditableItem) { GridEditableItem editableItem = item as GridDataItem; editableItem.Edit = true; } } else { if (item is GridEditableItem) { GridEditableItem editableItem = item as GridDataItem; editableItem.Edit = false; } } } RadGridFailureReportSearch.Rebind(); }protected void RadGridFailureReportSearch_ItemCommand(object sender, GridCommandEventArgs e) { if (e.CommandName == RadGrid.ExportToExcelCommandName) { RadGridFailureReportSearch.ExportSettings.IgnorePaging = true; foreach (GridItem item in RadGridFailureReportSearch.MasterTableView.Items) { if (item is GridEditableItem) { GridEditableItem editableItem = item as GridDataItem; editableItem.Edit = false; } }
// Tried with and without below line RadGridFailureReportSearch.Rebind(); } }