Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
198 views
Hi,

I have succesfully connected a SSAS 2012 OLAP Cube with PivotGrid component with ADOMD connection. However, I'm having difficulties with displaying a parent-child hierarchy, which has a self-referencing field. PivotGrid seems to flatten my hierarchy and it's not showing hierachical summaries as Excel PivotTable component.

Should parent-child hierarchies work with PivotGrid? Will it be available in the future?

Best Regards,
Mikko Luukkonen
Antonio Stoilkov
Telerik team
 answered on 10 Jan 2014
2 answers
1.3K+ views
Is there a way to cancel the Insert (Add New Record) or Edit mode programmatically?

I am binding the RadGrid based on what the user selects in a DropDown. However, if they click on "Add New Record" or Edit in the RadGrid, even after the RadGrid is re-databound, it still maintains its Insert/Edit State. I want to start on a clean slate (RadGrid is neither inserting or editing).

~P
Faraz
Top achievements
Rank 1
 answered on 10 Jan 2014
1 answer
275 views
Hi

We are using RadCombobox autocomplete feature. When user is typing below text which having special characters then server side we are seeing different text
@ Pole                -- server side -- %40 Pole
ran & marry         -- server side  -- ran %20 marry
s/s/                      -- server side  -- s%2Fs%2F
Sun Rao              -- server side   -- Sun%20Rao

This is not happening consistently, but in debug mode we can see different values. It would great help if there a way to fix this.

Thanks,
Pradip

Shinu
Top achievements
Rank 2
 answered on 10 Jan 2014
1 answer
122 views
Hi all,


I have a  radlistbox and a radcombobox which includes checkboxes.  I'm populating the combobox items from a database table.
The checked items in combobox are listed in listbox after clicking a button. However when I add  EnableAutomaticLoadOnDemand="True" property to the combobox the checked items couldn't transfer to the listbox.
Do you have any idea about solution of this problem
 
 
Thanks
Seda
Shinu
Top achievements
Rank 2
 answered on 10 Jan 2014
1 answer
146 views
Hi All,

I'm using telerik asp.net controls to develop a dashbard. Here I met an issue that I cannot hide a chart(pie chart)'s seriesitem name. I'd like to not show the series name in chart but show it(name and vlue) in tooltip. Is there a way to now show the seriesitem name? Thanks.
Here is the code, I did not want to show "Available Machine" and "Unavailable Machine" in my chart.
<telerik:RadHtmlChart runat="server" Skin="Metro" ID="TestPurposePieChart" CssClass="telerikpiechart">
 
                        <ChartTitle Text="Ops Server Percentage">
 
                            <Appearance>
 
                                <TextStyle FontFamily="Segoe UI,Tahoma,Century" Color="White" />
 
                            </Appearance>
 
                        </ChartTitle>
 
                        <PlotArea>
 
                            <Series>
 
                                <telerik:PieSeries Name="Server Percent" DataFieldY="Data" NameField="Name" >
 
                                    <LabelsAppearance Visible="false" />
 
                                    <TooltipsAppearance DataFormatString="{0}%" Color="White" />                                   
 
                                    <SeriesItems>
 
                                        <telerik:PieSeriesItem Name="Available Machine" Y="30" BackgroundColor="Green" />
 
                                        <telerik:PieSeriesItem Name="Unavailable Machine" Y="70" BackgroundColor="Red" />
 
                                    </SeriesItems>
 
                                </telerik:PieSeries>
 
                            </Series>
 
                        </PlotArea>
 
                    </telerik:RadHtmlChart>
Jianjun
Top achievements
Rank 1
 answered on 10 Jan 2014
8 answers
326 views
How can I use filter expression to filter the master table colums so that I see only the rows concerning a specific loged in user?

The code to get the userid is below :

 

MembershipUser myObject = Membership.GetUser();

string UserID = myObject.ProviderUserKey.ToString();

I have made the userid column invisible in the grid.

Nahji
Top achievements
Rank 1
 answered on 09 Jan 2014
1 answer
103 views
Hi,

I want to print a radgrid from client side, and am using the code below. it is working fine.But, one of the column is having textarea control. So it is printing the textarea, instead i want to print text inside that control in that column. can we do it with some javascript?  Thanks in advance. 

var previewWnd = window.open('about:blank', '', '', false);
        var sh = '<%= Page.ClientScript.GetWebResourceUrl(GridData.GetType(),String.Format("Telerik.Web.UI.Skins.{0}.Grid.{0}.css",GridData.Skin)) %>';
        var styleStr = "<html><head><link href='" + sh + "' rel='stylesheet' type='text/css' /></head>";
        var htmlcontent = styleStr + "<body>" +  $find('<%= GridData.ClientID %>').get_element().outerHTML + "</body></html>";
        previewWnd.document.open();
        previewWnd.document.write(htmlcontent);
        previewWnd.document.close();
        previewWnd.print();
        previewWnd.close();
Viktor Tachev
Telerik team
 answered on 09 Jan 2014
2 answers
108 views
Right now we are storing filtering in the session so that whenever a user returns to the grid, their filter options are still preserved. Everything is working great, except for the values that were in the date range. For all the other columns, I was able to specify column.CurrentFilterValue = "something" and then the respective filter text box would reflect "something." However, when I try this same technique for my date range column, it does nothing, and the "From" and "To" textboxes are just blank, but the grid's filtering is still preserved.

How can I reset these values on date range columns?

Thank you for your help
Justus
Top achievements
Rank 1
 answered on 09 Jan 2014
1 answer
99 views
Hi I am trying to adjust some code for the image manager so it points to a CDN.
Currently I have it pointing to a local folder:

imageManagerParameters.ViewPaths = New String() {"~/media/thumbnails"}
imageManagerParameters.UploadPaths = New String() {"~/media/thumbnails"}
imageManagerParameters.DeletePaths = New String() {"~/media/thumbnails"}



However if I enter a full URL I get an error
For example: imageManagerParameters.ViewPaths = New String() {"http://646464.rackcdn.com/thumbnails"}

Does anyone know a work around for this?
Thanks in advance.
Ianko
Telerik team
 answered on 09 Jan 2014
3 answers
198 views
Hi,

I believe I have found a bug in the RadEditor and I can reproduce it in the Editor demo on your demo site. I have reproduced it in Firefox and Chrome, although they give different javascript errors. Here what you can do to reproduce the error:

1. Go to the Overview of the Rad Editor demo
2. Switch the editor to HTML mode
3. Add <html> as the first line before "<h2 class="titletext">......"
4. Switch to Design mode
5. Uncheck any of the checkboxes under "Change Edit Mode"

When the AJAX callback is done, a javascript error will appear and your change will not be displayed (if you unselected "HTML Mode", the HTML tab will still be on the editor).

In Firefox, the error is:   TypeError: c._events is undefined
In Chrome, the error is:  TypeError: Cannot read property 'keypress' of undefined.

this appears to only be an issue while the ContentAreaMode is set to IFrame. I could not reproduce it with the mode set to Div. However, we have a situation where the mode must be set to IFrame to achieve the features weneed, so simply switching the modes will not work for us.

We are currently using version 2013.1114.40 and experience this issue. We recently upgraded from 2012.1.0320.40 where we did not experience this problem.

Any help would be greatly appreciated. 

Ianko
Telerik team
 answered on 09 Jan 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?