Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
79 views
I have recently upgraded the Telerik.Web.UI.dll to version 2013.3.1114.40. When I tested in my dev environment, everything works as expected. However our QA team has an IE9 browser running on Windows Server 2008. When they point that browser at the application hosted in my dev environment (which is running on Windows 7), the RadComboBox becomes unusable. When you try to click on it, nothing happens. There are many "$telerik is undefined" javascript errors. I have reproduced this behavior using another IE9 browser on a different Windows 2008 box. However, as long as I'm using IE9 on any other machine (running Windows 7), the controls work fine.

I assume that the issue is with the client, maybe some security setting related to Windows 2008/IE9. I have disabled IE ESC and that did not fix the issue. What is causing this problem?
Nencho
Telerik team
 answered on 15 Jan 2014
12 answers
1.1K+ views
i want my radgrid to show data horizontally.....is it possible?
Maria Ilieva
Telerik team
 answered on 15 Jan 2014
5 answers
185 views
I have an issue with several pages in a large project. Essentially what the problem breaks down into is that the ajax is not getting called correctly due to javascript errors. This occurs in several locations but I will focus just on one at the moment. The client side html is as follows:

<select name="ctl00$cphPageContent$groups" id="ctl00_cphPageContent_groups" style="width: 290px; height: 450px;" onchange="javascript:setTimeout('AjaxNS.AR(\'ctl00$cphPageContent$groups\',\'\', 'ctl00_RadAjaxManager_WebSiteMaster', event)', 0)" size="4">
 <option selected value=tg1>Test Group</option>
 <option value=tg2>Test Group 2</option>
</select>

In the onchange method, 'ctl00_RadAjaxManager_WebSiteMaster' is within the setTimeout's javascript call. The problem with this is that it should be [\'ctl00_RadAjaxManager_WebSiteMaster\'] (minus the brackets). Notice the slashes before the single quote mark. Does anyone have any idea why this would be showing up like this? The asp code for the listbox is below and the options for the event are in the code behind. Note that having the event in the code behind or in the aspx page does not make a difference.

<asp:ListBox ID="groups" Width="290px" Height="450px" runat="server"></asp:ListBox>

groups.AutoPostBack = true;
groups.SelectedIndexChanged += new EventHandler(groups_SelectedIndexChanged);
Maria Ilieva
Telerik team
 answered on 15 Jan 2014
1 answer
58 views
When I bind a PivotGridRowField to a property of my object everything it's ok:

rowField.DataField = "Value";

However, if i try to bind it with a property wich is in a second level, it doesn't work:
rowField.DataField = "Type.Name";

Any ideas?

Thanks.
Maria Ilieva
Telerik team
 answered on 15 Jan 2014
1 answer
93 views

Hi,

I compiled up my ASP.Net application, and copied it to the server. The grid shows, but doesn't look the same on the server as on the dev system. The filter on the server doesn't work, and the click event also appears not to work. There are no scroll bars on the server either.



I have attached screen shots of both.



This is my first deployment, so please be gentle :)



Thanks





Maria Ilieva
Telerik team
 answered on 15 Jan 2014
8 answers
853 views
Hi guys,

I can't find a simple way (this is, with a simple CSS style, and not creating and/or modifying the complete skin file) to override the Office 2007 Skin default font for the combo drop down list items font. I have been able to replace the font for the input box with this:

div.comboInput .rcbInputCell .rcbInput
{
     font-family: Courier New;
}

Is there something similar I can use to replace the font for the items in the dropdown list?

Thank you!
Joaquín
Top achievements
Rank 2
 answered on 15 Jan 2014
1 answer
50 views

Hi Telerik Team,

I need approach how to implement re-order items in a list box(or any other telerik control) where each item is having up and down buttons.

I seen radlist demos  with re-order functionality but here all demos contains common single button ( up/down ) for all items.

in my case I need up and down arrow button for individual item..

Please suggest me how to implement this functionality like below screen shot.







Thanks,

Satish

Kate
Telerik team
 answered on 15 Jan 2014
1 answer
102 views
Hi! Is there any reason why RadGrid exportToPDF has Header Footer export settings enabled and editor doesn't have that? Is there any way to implement that feature?
Ianko
Telerik team
 answered on 15 Jan 2014
1 answer
65 views

Hello,

I'm trying to figure out how to show the values for a dimension when selecting to filter. The OLAP sample located here: http://demos.telerik.com/aspnet-ajax/pivotgrid/examples/olap/defaultcs.aspx does not show the values for dimensions when you click to filter. For example if I want to filter on the product category bikes, I need to do an equlas or contains, I just can see the values for the category dimension and pick bikes.



thanks for any advice, I am still evaluating this control and would like to make sure this works.



thanks,

rob

Antonio Stoilkov
Telerik team
 answered on 15 Jan 2014
1 answer
700 views
I have 10 columns in my radgrid. In that 8 columns are visible all the time. The two columns are dependent on a radio button selection. If index=0 show 9th column or show 10th column. I am trying to sort these last 2 columns(out of which only 1  visible one time). In the page load the first action i perform is set up the radio button list and then bind the grid. I also make that radiobutton list disabled. So the grid doesnt change. I am able to sort on each and every 8 columns. But this new column (9th or 10th) is not. I tried like this

 Dim expression As GridSortExpression = New GridSortExpression()<br>            expression.FieldName = str(intI)<br>            expression.SortOrder = GridSortOrder.Descending<br>            rgContractHistory.MasterTableView.SortExpressions.AddSortExpression(expression)
for the new column in itemdatabound and/or page_load.But it doesnt work. My columns are of this type
  <telerik:GridTemplateColumn ItemStyle-BorderWidth="0"  HeaderStyle-Font-Bold="true" ItemStyle-HorizontalAlign="Left" UniqueName="CustomerName"<br><span class="Apple-tab-span" style="white-space:pre">                                              </span>ShowSortIcon="false"><br><span class="Apple-tab-span" style="white-space:pre">                                                </span><ItemTemplate><br><span class="Apple-tab-span" style="white-space:pre">                                                    </span><asp:Label ID="lblCustomerOrganization" runat="server" Text='<%# Eval("CustomerOrganization")%>'/><br><span class="Apple-tab-span" style="white-space:pre">                                              </span></ItemTemplate><br><span class="Apple-tab-span" style="white-space:pre">                                           </span></telerik:GridTemplateColumn>
You can see that I have sortexpression mentioned and an Eval mentioned. I did this for all 10 columns. 8 work. 9th/10th doesnt. I removed the sort expression and used the GridSortexpression mentioned above for all 10 columns. Still did not work. What else am I missing?Let me know if you need more info. Thanks
Princy
Top achievements
Rank 2
 answered on 15 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?