Hi,
It will be great to have a property in a raddock to automatically adjust its height/width to occupy the new space created when some other raddock in the layout is minimized. This will avoid the need for the user to adjust the height/width of the raddock which is still visible.
I have a problem with the deletecommand of the asp.net radgrid control (Telerik.Web.UI 2019.1.215.40).
This happens only in the latest release of Chrome.
I hope you can replicate this issue and eventually fix it.
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.
We could use a new calendar control that works differently than the scheduler, or any existing calendar control.
Overview of features and how it would work:
Treat as an array so we could loop through the control and read each value for saving to database or to take action on from code.
Example shown below. This is dynamically creating using tables and HTML. Not the nicest looking, and a pain to reuse anywhere. We could make use of this type of control in a lot of applications.
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>
This are note the ASP.NET Ajax releasenotes...
SlideView and PDFView are controls in the UI for Xamarin Forms
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>
Request to addorder tracker component similar to the attached screen shot.
Srini
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>
I am using the "PostbackTriggers" property of the Upload control, as described on your web site article "How to Persist Uploaded Files". This works well for the situation where I need a postback on a control, but that control is not a "submit" control. The problem comes when I use one of the "submit" controls (listed in the PostbackTriggers property), but a server side validation error occurs, and the form data (including uploaded files) is NOT saved to the DB. (This is a type of validation that can only be done on the server side.) In that case, the upload control loses the uploaded file information. Thus two questions: 1. Is there a way on the server side to tell the control that an error has occurred, and to continue to persist the uploaded file information? 2. Is there a way for the upload control to ALWAYS persist the uploaded file information until told on the server side that I have extracted the information I need from it?
RadButton's focus state styling is missing in Bootstrap. Steps to reproduce: 1. Open https://demos.telerik.com/aspnet-ajax/button/examples/keyboardsupport/defaultcs.aspx?skin=Bootstrap 2. Focus any of the first buttons using the Tab key Result: No focus styles are applied Expected: Follow the steps above in Sunset skin ----------------------------------------- Workaround: button.RadButton.rbButton:focus { box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset; }