I've download the demo code for the Predefined table styles code, and I noticed that the CSS dropdown isn't limited to the classes in that document. Basically, any class on the page hosting the editor becomes available in there.
So if I add style .aardvark to the head of the page hosting the RadEditor, it becomes the first option in the CSS Dropdown despite it not appearing in TableLayoutCss.css. We have a lot of classes across our application that are applied to every page we render, so we don't want them all appearing in here.
In my case, the HTML users define here is rendered to PDF in the back office by a different tool, so I don't want any classes available for selection in the front end that aren't specifically in TableLayoutCss.css.
Has anyone hit this problem and managed to overcome it or is this expected behaviour of the TableLayoutCssFile option? As things stand, I'm having to tell the users to avoid using the CSS dropdown and go for the 'More Table Styling' button instead, but this clearly isn't as portable a solution as it should be!
I inherited an intranet that was developed by one of our in-house developers years ago, he has since left. When he left his duties passed on to someone else and after various forms of attrition, have fallen to me. Any documentation he may have provided never made its way down to me so I'm completely flying blind. Anyway, I had managed to fix an issue with one of the other Telerik pages because I found the section in the aspx that referred to the <asp:SqlDataSource and then was followed by a bunch of SQL code so I was able to update the parts of that that needed to be updated and that one works fine now. But a new problem has creeped up with another page that looks like it pulls data from our ERP regarding timesheet data. I would assume it must be getting that from some sort of SQL statement as that is the only way into that system but there is no SQLDataSource tag on this page.
Where should I be looking in the apsx file to identify where the data is coming from for that page? Since there is no SQL call on the page itself I assume that its calling something else and that has the SQL query in it, but I can't find it for my life.
Thanks.

I have a diagram with fixed width and height, and on this diagram I have tons of generated shapes in a tree layout.
The shapes cannot be fully displayed in the diagram, only a part of them can be seen. I need to zoom out to shrink all the shapes in order to see the complete picture. However, because there are a lot of shapes, after zooming out, each shape becomes very small and cannot be seen clearly. I hope the diagram can have a horizontal and vertical scrolling feature, so that I can scroll to view the entire picture. I did not find the scrolling feature for the diagram in the documentation. (Pan and drag are not what I'm looking for.)
How can I implement this?
Thanks.
I don't know why the title text of sliding pane is upside down. This sliding pane is a 'left-to-right' pane, so the titel text should be facing left.
Can someone help me?
<div>
<telerik:RadSplitter runat="server" ID="splitter" Width="1500px" Height="1000px" Orientation="Vertical" RenderMode="Lightweight">
<telerik:RadPane runat="server" ID="Pane1" Scrolling="None" Width="22px">
<telerik:RadSlidingZone runat="server" ID="SlidingZone1" Width="22px" SlideDirection="Right">
<telerik:RadSlidingPane runat="server" ID="SlidingPane1" Width="600px" EnableDock="false" EnableResize="false" Title="Input Control">
<div style="padding:5px;">
<table>
<tr>
<td style="width:150px; text-align:left; vertical-align:text-bottom">
<telerik:RadLabel runat="server" ID="InputNodeLabel" AssociatedControlID="InputNodeDropDownList" Text="Input Node:"></telerik:RadLabel>
</td>
<td>
<telerik:RadDropdownList runat="server" ID="InputNodeDropDownList" DefaultMessage="Select..." DropDownHeight="300px" DropDownWidth="200px" EnableVirtualScrolling="true">
</telerik:RadDropdownList>
</td>
<td>
<telerik:RadLabel runat="server" ID="ShowNode"></telerik:RadLabel>
</td>
</tr>
<tr>
<td style="width:150px; text-align:left; vertical-align:text-bottom">
<telerik:RadLabel runat="server" ID="InputLevelLabel" AssociatedControlID="InputLevlTextBox" Text="Input Level:"></telerik:RadLabel>
</td>
<td>
<telerik:RadTextBox runat="server" ID="InputLevelTextBox" Width="200px" EmptyMessage="Please type here..."></telerik:RadTextBox>
</td>
<td>
<telerik:RadLabel runat="server" ID="ShowLevel"></telerik:RadLabel>
</td>
</tr>
<tr>
<td>
<telerik:RadLabel runat="server" ID="InputDirectionLabel" AssociatedControlID="InputDirectionComboBox" Text="Choose Direction:"></telerik:RadLabel>
</td>
<td>
<telerik:RadComboBox runat="server" ID="InputDirectionComboBox" >
<Items>
<telerik:RadComboBoxItem Selected="true" Value="DefaultSelect" Text="(Select...)" />
<telerik:RadComboBoxItem Value="Forward" Text="Forward" />
<telerik:RadComboBoxItem Value="Backward" Text="Backward"/>
</Items>
</telerik:RadComboBox>
</td>
<td>
<telerik:RadLabel runat="server" ID="ShowDirection"></telerik:RadLabel>
</td>
</tr>
<tr>
<td><br /></td>
</tr>
<tr>
<td>
<telerik:RadButton runat="server" ID="Apply1" Text="Apply" Width="100px" AutoPostBack="true" OnClick="Apply1_Click"></telerik:RadButton>
</td>
</tr>
</table>
</div>
</telerik:RadSlidingPane>
<telerik:RadSlidingPane ID="SlidingPane2" runat="server" Width="600px" Title="test">
Test pane content
</telerik:RadSlidingPane>
</telerik:RadSlidingZone>
</telerik:RadPane>
<telerik:RadPane runat="server" ID="Pane2" Scrolling="None" >
<telerik:RadDiagram runat="server" ID="test_diagram" Width ="100%" Height="1000" ZoomRate="1" ZoomMax="1">
<LayoutSettings Enabled="true" Type="Tree" Subtype="Right" />
</telerik:RadDiagram>
</telerik:RadPane>
</telerik:RadSplitter>
</div>Hi. New here, still getting my hands on Telerik.
I want to draw a diagram in tree layout, and I followed the documentation, added LayoutSettings.
The shapes and connections for the diagram are generated in C# code.
But what I got was nothing near what is shown in the documentation and demo. The shapes are overlapping each other. The connections between shapes look weird. You can see that in file problem_diagram.png. In fact, I have 8 shapes in this diagram, but the shapes are overlapping at the top left corner, so you can only see 5 shapes. I dragged the shapes so that all shapes can be seen in file dragged_diagram.png.
update: I solved the problem.
Hi All,
Can any one let me know how to save and retrieve the layout settings from SQL server .
Hello,
I've been facing a issue of timeout script not trigger. I'm using asp.net webform telerik version R2 2021 SP1 (version 2021.2.616.
If I don't click any page from menu and any button (consider as do nothing for 59seconds) so after 59 seconds when I click any other page from menu or click any button, so application automatically logout and go to logout page.
clientevents ResponseEnd not trigger after 1minute tererik version R2 2021 SP1 (version 2021.2.616.Thanks
Yasir Khan
Need to set friendly URLs for ASP classic web site running on IIS 7 .
There is this rules in my web.config
<rewrite>
<rules>
<rule name="chatter">
<match url="^chatter/default.aspx?article=([0-9]+)" />
<action type="Rewrite" url="chatter/article{R:1}.aspx" />
<conditions>
<add input="{QUERY_STRING}" pattern="^www\.SUB\.DOMAIN\.org$" />
</conditions>
</rule>
</rules>
</rewrite>
Nothing happens when I apply this rule. Please note there is subdomain included. Any help ?