Hi,
I am creating RadPivotGrid fields on page load programmatically, but when ı drag and drop any fields to another area (column,row,data etc.) all fields are disappear and no data available.Here is the server side vb code. Can anyone help me what is the reasen of this?
RadPivotGrid1.EmptyValue = ""
RadPivotGrid1.ColumnHeaderCellStyle.Width = New Unit(90)
RadPivotGrid1.ClientSettings.Scrolling.AllowVerticalScroll = True
Dim JSs = New AdvancedJavaScriptSerializer()
Dim lstPivotGridField As List(Of PivotGridFieldItem) = JSs.Deserialize(Of List(Of PivotGridFieldItem))(Request.Params("lstPivotGridField"))
For Each PGField In lstPivotGridField
If PGField.DataField.Trim = "" Then
Continue For
End If
Dim Field As PivotGridField = Nothing
Select Case PGField.Group
Case 0
Field = New PivotGridColumnField()
Case 1
Field = New PivotGridRowField()
Case 2
Field = New PivotGridReportFilterField()
Case 3
Dim AggField = New PivotGridAggregateField()
Select Case PGField.Type
Case 0
AggField.Aggregate = PivotGridAggregate.Sum
Case 1
AggField.Aggregate = PivotGridAggregate.Count
Case 2
AggField.Aggregate = PivotGridAggregate.Average
Case Else
Continue For
End Select
AggField.Caption = PGField.Caption
AggField.DataField = PGField.DataField
AggField.UniqueName = PGField.DataField
AggField.DataFormatString = "{0:F2}"
AggField.TotalFormatString = "{0:F2}"
RadPivotGrid1.Fields.Add(AggField)
Continue For
Case Else
Continue For
End Select
Field.Caption = PGField.Caption
Field.DataField = PGField.DataField
Field.UniqueName = PGField.DataField
RadPivotGrid1.Fields.Add(Field)
Next
----------------------------------------- ASPX CODE BEHIND --------------------------------------------------------------
<telerik:RadMultiPage runat="server" ID="CubeReportMultiPage">
<telerik:RadPageView runat="server" ID="pwTablo">
<telerik:RadAjaxPanel ID="radAjaxPanel" runat="server" LoadingPanelID="RadAjaxLoadingPanel1">
<telerik:RadPivotGrid RenderMode="Lightweight" runat="server" ID="RadPivotGrid1" AllowFiltering="true" AllowPaging="true" ShowFilterHeaderZone="false" OnPivotGridCellExporting="RadPivotGrid1_PivotGridCellExporting" OnCellDataBound="RadPivotGrid1_CellDataBound">
<ClientSettings EnableFieldsDragDrop="true">
<Scrolling AllowVerticalScroll="true"></Scrolling>
</ClientSettings>
</telerik:RadPivotGrid>
</telerik:RadAjaxPanel>
</telerik:RadPageView>
<telerik:RadPageView runat="server" ID="pwGrafik">
<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Visible="true" Legend-Appearance-Position="Top"
PlotArea-YAxis-LabelsAppearance-DataFormatString="C" PlotArea-XAxis-LabelsAppearance-RotationAngle="45">
</telerik:RadHtmlChart>
</telerik:RadPageView>
</telerik:RadMultiPage>

the site on IIS 8.5 which is working fine while browsed wit .
http://localhost:80
But when accessed with domain name the resources are not loaded
Please find attached screenshot for same
Please help

Hi,
We are using RadEditor Export PDF functionality.
Export to PDF getting Javascript Error "Error while executing filter ConvertFontToSpanFilter - InvalidCharacterError: Failed to execute 'setAttribute' on 'Element': 'font-family:arial,' is not a valid attribute name.
We tried to Disable ConvertFontToSpanFilter Filter. Then PDF is not downloaded and getting below Error
System.ArgumentException: String cannot be of zero length. Parameter name: oldValue at System.String.ReplaceInternal(String oldValue, String newValue) at System.String.Replace(String oldValue, String newValue) at System.Text.RegularExpressions.RegexReplacement.Replace(MatchEvaluator evaluator, Regex regex, String input, Int32 count, Int32 startat) at System.Text.RegularExpressions.Regex.Replace(String input, MatchEvaluator evaluator) at Telerik.Web.UI.Editor.Export.ApocPdfGenerator.ValidateContentForExport(String content) at Telerik.Web.UI.Editor.Export.RadEditorExportTemplate.GenerateXmlStirng(String pageTitle, String content) at Telerik.Web.UI.Editor.Export.RadEditorExportTemplate.InitializeXmlContent() at Telerik.Web.UI.Editor.Export.RadEditorExportTemplate.Export() at
i have a problem in uploading files via RadAsyncUpload when i open the page that contains the telerik upload controls
the following error rises -->
RadAsyncUpload does not have permission to write files in the TemporaryFolder. In Medium Trust scenarios, the TemporaryFolder should be a subfolder of the Application Path.
in localhost working fine but in my website does not work ,
so i contacted to the host provider and asked to set full permission to App_Data an the Target folder and sub folders so they set the permission and still i get the above error ,
then i set UseApplicationPoolImpersonation to True and impersonate to true in web.config but still no hope same error,
what can i do to fix this error
note: before the host provider update iis to 10 the upload was working.
I am using the Panelbar for navigation. The Panelbar expands when a category button is clicked. When a child item is selected in the Panelbar and navigate to page, the Panelbar collapses. The Panelbar should stay open until another item on the same level is selected. The user must reopen the menu item to select another item from the same level. In my case two levels collapse, back to original setting when web site opened.
The menu looks like this:
Major Category 1 (Always expanded)
Item 1
item 2
Item 3
Major Category 2
Minor Category 1
Item 1 Selecting any of these items will collapse everything back to Major Category 2
Item 2
Item 3
Minor Category 2
Item 1 Selecting any of these items will collapse everything back to Major Category 2
Item 2
We have these settings:
ExpandMode="MultipleExpandedItems" This is selected because we have the most used items expanded all the time and then less used items in major categories with sub categories then child items.
Prevent collapse does not let the panel ever collapse once it has been opened
What setting do we use so the panelbar will remain expanded until another item on the same level is expanded?
We are using ASP.NET with Ajax version: 2011.2.712.40