Dear All
I looking for some activation of some features which are described in UI for WPF, I cant found it for Ajax
under WPF it is described that it will be possible to set
RoutingGridSize
AvoidShapes
WallOptimization
etc...
How can I set them in Ajax?
Cheers

Is there any inbuilt mechanism that would allow me to collapse (hide and reveal) sub trees within a hierarchical Diagram.
The functionality I'm looking for would visually hide any and all descendant diagram nodes where that node has no parents that are not already hidden.

Hello,
When I have the Telerik Rad Editor set to insert Paragraph tags for new lines, they also tend to insert additional information from the current line. This happens when the user hits Enter or when they click the New Paragraph tool bar item.
For example, I have added some custom buttons that insert placeholders into the code that I will then parse out with actual values as necessary. I am inserting HTML like this: <span title="Speakers">{{Speakers}}</span>
I like putting it in a span with a title so when they hover their mouse over it they see some additional information.
But if this is on one line, surrounded by it's own paragraph tag, when I go to add another paragraph after it (to add additional text or placeholders or anything) user either the keyboard or toolbar item, the new paragraph will be:
<p><span title="Speakers"> </span></p>
Instead of just: <p> </p>
What can I do to insert JUST an empty paragraph? Why is it pulling my span tag in, too?
Thanks.
How do I change the background color of the title (), which is now green to blue?
And note that the title of the background color for MetroTouch skin has gone from blue to gray? Bug or changed?
Icon title = "warning," Is there a library? If, Where?
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load AddHandler RadGrid1.HeaderContextMenu.ItemCreated, New Telerik.Web.UI.RadMenuEventHandler(AddressOf HeaderContextMenu_ItemCreated) End Sub Protected Sub HeaderContextMenu_ItemCreated(sender As Object, e As Telerik.Web.UI.RadMenuEventArgs) If TypeOf e.Item Is RadDatePicker Then Dim picker As RadDatePicker = DirectCast(e.Item, RadDatePicker) picker.DatePopupButton.ToolTip = "Apri il calendario" End If End Sub Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load If Not Me.IsPostBack Then RadGrid1.Culture = New CultureInfo("it-IT") End Ifend subI have a web app that's been using a RadGrid for some years now. The original layout was established in part by trial and error and has worked out fairly well.
I've only recently upgraded to the latest Telerik controls and I'm trying to use the BootStrap skin.
It looks to me like this particular skin is somehow affecting (increasing) row height and none of the solutions that I've found in the forums seem to affect it.
Everything looks fine except for this one particular issue.
Any way to get this under control?

Hi,
I'm using a RAD Scheduler Timeline view which should show users appointment in a timeline view. Im using a datatable to bind the data. howewer for the same resource there are multiple rows in the data table in turn there are multiple rows for that resouce in RAD Scheduler.
Example:
Sankar - 01/30/2017 - 09:00 AM
Sankar - 01/30/2017 - 05:00 PM
For the above mentioned rows in Datatable Im getting two individual rows in RADScheduler. But I should get both 9 AM and 5 AM appointments in the same row. Please help as its urgent. Thanks in Advance..
Hi,
Have NumericTextBox inside asp:Repeater ItemTemplate:
<telerik:RadNumericTextBox ID="ntbPrice" runat="server" Value='<%# Convert.ToDouble(DataBinder.Eval(Container.DataItem, "DefaultPrice")) %>' MinValue="1" Type="Currency" Width="60px" InvalidStyleDuration="200" OnKeyDown = "return (event.keyCode!=13);">
</telerik:RadNumericTextBox>
Problem is that I am not receiving updated values at post back (user types some value in the numeric text box). Value is always initial value automatically set during control data binding.
Any idea?
Thanks in advance,
Sanjin
Hi,
I am new to this rad rotator object and I came across the following old code. The issue at hand is that when I run the page, nothing shows up in the rotator control and it is blank. I performed some debugging and I do see that there are some invisible objects but I am not able to see anything. I have connected the rotator control to a sql data source and there is data in the table but nothing is getting presented in the page. I would appreciate your help in fixing this issue.
Thanks
<telerik:RadDock ID="RadDock12" runat="server" Text="Blog" Collapsed="False"Title="Breaking Security" Width="25%" Height="170"> <ContentTemplate> <telerik:RadRotator ID="RadRotator2" runat="server" Width="100%" Height="100%" ScrollDuration="10000" ScrollDirection="Down" FrameDuration="6000" ItemHeight="170px" ItemWidth="100%" DataSourceID="Sql_Security" > <ItemTemplate> <table style="width: 100%; height: 140px; display:block; border:solid; margin-top:100px;" onclick="<%# DataBinder.Eval(Container.DataItem, "Info_Link")%>"> <tr> <td style="vertical-align: middle; padding-right: 10px;"> <%# DataBinder.Eval(Container.DataItem, "Alert_Title")%> </td> <td style="font-size: 11px; vertical-align: middle"> <%# DataBinder.Eval(Container.DataItem, "Alert_Details")%> </td> <td style="vertical-align: middle;"> <a href="<%# DataBinder.Eval(Container.DataItem, "Info_Link") %>" target="_blank">details</a> <%--<asp:Image ID="CustomerImage" runat="server" ImageAlign="Left" ImageUrl='<%# String.Format("~/Img/Northwind/Customers/Thumbs/{0}.jpg", DataBinder.Eval(Container.DataItem, "Alert_Title_Image")) %>' />--%> </td> </tr> </table> </ItemTemplate> </telerik:RadRotator> <asp:SqlDataSource ID="Sql_Security" runat="server" ConnectionString="<%$ ConnectionStrings:OLD_Reporting_Prod_DB %>" SelectCommand="SELECT TOP 1000 [Alert_Source] ,[Alert_Title] ,[Alert_Title_Image] ,[Alert_Arrow] ,[Alert_Arrow_Image] ,[Alert_Number] ,[Alert_Number_Image] ,[Alert_Details] ,[Date_Inserted] ,[Info_Link] FROM [Reporting].[dbo].[Security_Alert_Feed] WHERE LEN(Alert_Details)>= 15 AND Info_Link != ''"> </asp:SqlDataSource> </ContentTemplate> </telerik:RadDock>