If you have a GridBoundColumn in your grid with a row that contains an apostrophe - such as o'reilly and do an export to ExcelML, it works fine. But if you group by that column and export, you get a yellow screen of death:
[SyntaxErrorException: Syntax error: Missing operand after 'reilly' operator.]
-Randy

We have two licences for the UI for ASP.net Ajax and installed one copy for Visual Studio 2010 back in 2013.
I recently installed Visual Studio 2015 on the same computer and had problems running an application developed in VS2010 on .net 4.0 in VS2015 upgraded to .net 4.5.
I tried installing the latest telerik trial version (2016) and this seemed to fix the problems for Visual Studio 2015. The only problem is it is a trial edition and I now have two versions of Telerik installed.
What I want to achieve is:
Please let me know what I need to do to achieve this.
Kind regards
How can I resize the SearchBox from javascript ?
I want to resize the SearchBox based on some available width between a min and max value I provide.
I tried the following but nothing changed
searchBox._dropDownWidth = "100px";searchBox._element.clientWidth = "100px";Hi,
when it comes to RadHtmlChart I can use InvokeLoadData="AfterPageLoad" to load the chart data after page load.
What is the equivalent for RadGrid?
Hi,
I have 2 numeric textbox, gridcalculated column and footer column.
Once the value is entered in the numeric textbox (something like onblur), i want to calculate the value for gridcalculated column and footer column. The lblTotalValue should have the total of the "GridCalculatedColumn".
This is the UI which I have:
<telerik:GridTemplateColumn UniqueName="OrderQuantity" HeaderText="Order Quantity" DataField="OrderQuantity"> <EditItemTemplate> <telerik:RadNumericTextBox ID="txtOrderQuantity" runat="server" > </telerik:RadNumericTextBox> </EditItemTemplate> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn UniqueName="UnitPrice" HeaderText="Unit Price" DataField="UnitPrice"> <EditItemTemplate> <telerik:RadNumericTextBox ID="txtUnitPrice" runat="server" > </telerik:RadNumericTextBox> </EditItemTemplate> <FooterTemplate> <asp:Label ID="lblTotal" Text="Total: " runat="server"></asp:Label> <asp:Label ID="lblTotalValue" runat="server"></asp:Label> </FooterTemplate> </telerik:GridTemplateColumn> <telerik:GridCalculatedColumn DataFormatString="{0:C}" DataType="System.Double" HeaderText="Extended Price" UniqueName="ExtendedPrice" DataFields="OrderQuantity,UnitPrice" Expression="{0}*{1}" Aggregate="Sum" Visible="true"> </telerik:GridCalculatedColumn>Is it possible with the gantt chart control to have a view where its month at the top then below that a column for each individual day?
I found this screenshot on the silverlight version:
http://d585tldpucybw.cloudfront.net/sfimages/default-source/productsimages/silverlight/ProductItemFeatures/ganttview_support-for-various-project-data_screenshot.png?sfvrsn=1
But cant find a way to do this witht he asp.net ajax version?
Thank you

Hi
i have a grid and in that Grid i have a column name 'Result' which Show data like 6-5,10-11 etc
i have two way to make that
1. select Set1 ,Set2 from table1
and then in grid
<telerik:GridTemplateColumn >
<ItemTemplate>
<%# Eval("Set1")+" -"+Eval("Set2") +","+'<sup>'+Eval("Set1")+'</sup>'+" -"+Eval("Set2") %>
</ItemTemplate>
</telerik:GridTemplateColumn >
2. i can return a field named 'result' from my data query store procedure like '(select ISNULL(CAST( Set1 as nvarchar(5)),'') +''+ ISNULL('-'+CAST(Set2 as nvarchar(5))+''+ISNULL('<sup>'+CAST(Set3 as nvarchar(5))+'</sup>','')'') as result from table1' which give me 6-5,10-11
and in grid
<telerik:GridBoundColumn UniqueName="Result" DataField="result" > </telerik:GridBoundColumn>
my Question is which one is better if the total number of set is 15.and number of row in result set more then 100