Simple reproducible is attached to illustrate the problem.
A workaround may be replacing RadButtons that invokes such postbacks with regular buttons and using a form decorator
Alternatively, you can simply disable the handler URL encryption
You can also put the following in the global.asax file to prevent the version from rendering on the page markup
protected void Application_BeginRequest(object sender, EventArgs e)
{
System.Web.HttpContext.Current.Items["_!TelerikVersionStampRendered"] = true;
}
or you can add the same line in a global Page_Load handler (e.g., in a base page class or in the master page your project uses)
I'm using couple of Rad Editor controls in my webpart and using ToolProviderID for performance optimization.
I'm initializing one rad editor toolbar from server side and using the same toolbar to provide other rad editors with their toolbar, Bascially I'm using ToolProviderID attribute to initialize other RadEditors, after doing this the Comments and Track Changes feature stop working although their options are selected in the toolbar.
<telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" EnableTrackChanges="true" EnableComments="true">
<TrackChangesSettings Author="AuthorName" CanAcceptTrackChanges="true" UserCssId="reU0" />
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="AcceptTrackChange" />
<telerik:EditorTool Name="RejectTrackChange" />
<telerik:EditorTool Name="AcceptAllTrackChanges" />
<telerik:EditorTool Name="RejectAllTrackChanges" />
<telerik:EditorTool Name="EnableTrackChangesOverride" />
</telerik:EditorToolGroup>
</Tools>
</telerik:RadEditor>
<telerik:RadEditor ID="RadEditor2" runat="server" ToolProviderID="RadEditor1" EnableTrackChanges="true" EnableComments="true"></telerik:RadEditor>
<telerik:RadEditor ID="RadEditor3" runat="server" ToolProviderID="RadEditor1" EnableTrackChanges="true" EnableComments="true"></telerik:RadEditor>
Request to addorder tracker component similar to the attached screen shot.
Srini
When attempting to view the page in design view, here's what it looks like:
Here is the markup:
<telerik:RadPanelBar ID="RadPanelBar1" runat="server">
<Items>
<telerik:RadPanelItem runat="server" Expanded="True" PreventCollapse="true">
<HeaderTemplate>
<div ID="content-header">
Auditing Report | GPO Changes For User
</div>
</HeaderTemplate>
<ContentTemplate>
<div ID="content-body">
<telerik:ReportViewer ID="ReportViewer1" runat="server" ReportBookID="" Width="100%" Height="12in">
</telerik:ReportViewer>
</div>
</ContentTemplate>
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelBar>
This are note the ASP.NET Ajax releasenotes...
SlideView and PDFView are controls in the UI for Xamarin Forms
This can be reproduced with the following sample:
<telerik:RadWindow runat="server" ID="RadWindowWithEditor" Height="1000px" OnClientShow="fixEditor" OpenerElementID="Button5"> <ContentTemplate> <telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" Width="700px" Height="700px"> <Content>Lorem ipsum dolor sit amet </Content> </telerik:RadEditor> </ContentTemplate></telerik:RadWindow><asp:Button ID="Button5" Text="open the RadWindow" runat="server" /><script type="text/javascript"> function fixEditor() { setTimeout(function () { $find("<%=RadEditor1.ClientID %>").onParentNodeChanged(); }, 100); }</script>
Hi,
Trying to use a web testing tool (Selenium) and using xpath is not always working. I was wondering if it would be possible to always add an ID property to controls, especially in drop downs etc. so that it can clicked properly.
A function that will return a thumbnail of the requested size and the page of a multipage pdf document.
Don
Reproduction steps:
Go to the Telerik demo at https://demos.telerik.com/aspnet-ajax/textbox/overview/defaultcs.aspx
In the Comment box, type "one two". Do not let the textbox lose focus.
Highlight "two" and start to drag it to move it before "one". The other text ("one") will disappear, and is gone forever, as far as I can tell.
It can be also reproduced with this configuration:
<telerik:RadTextBox RenderMode="Lightweight" runat="server" ID="RadTextBox3" Width="200px" EmptyMessage="Enter comment" TextMode="MultiLine" Height="100px" Resize="None"></telerik:RadTextBox>
We are evaluating whether to use Telerik to redesign a legacy web app written using an old version of Telerik.
After downloading Trial version on fresh install of windows, I can't add ajax control to form. `I am using visual studio 2019, this is the first version of Telerik installed on this computer. I just get the "Error Creating Control RadScriptManager1. They do show up in the toolbox so this surprises me.
Very latest version.
7/28/2019
Could it be a license issue?
Hi, I have trouble with RadScriptManager. I would like combine scripts on page to only one file. But when I enabled it, my site threw javascript error on loading.
Please help me fix it, it would also be better if you can help me understand what happened.
First image is what I set up for RadScriptManager
Secondary image is the error.
I have no idea what's Telerik.Web.UI.Point, I haven't used it anywhere.
Please help me get this error out & fix it.
Thank you.
Ref. attached Image its show horizontal scrolling round with red color.
In business application more number of groups and menu item at that time horizontal scrolling very usefull as shown in the attached image
We suspect a bug of Telerik controls:
Bug of Telerik: PageView.set_contentUrl(MyUrl) method - call MyUrl twice if RadTabStrip and RadMultiPage is inside RadAjaxPanel control. Firefox only.
Code: http://bit.ly/2NVbm8Z
It enter here two times: http://bit.ly/2NZ0cQH
If try it in chrome - request goes only one time.
If remove RadAjaxPanel - also request goes only one time.
Is it bug of your Controls?