Hi Telerik team,
Some of our customers are experiencing span or br tags being
added into the HTML when they are backspacing to adjust space or combine
paragraphs. It happens on Chrome and Firefox browsers only ( please see attachments for HTML ).
Chrome browser:
Span tag is added automatic if you use backspace key to
combine paragraphs. “<span style="???;">”, style can be
background color, font size of or letter spacing. We cannot reproduce it on
Telerik demo site.
Firefox browser:
If you combine the last paragraph, <br
class="t-last-br" /> will added in the paragraph element. This
issue can reproduce it on Telerik demo site too.
We tried a few things but we still cannot solve it.
1. We tried version 2020.2.617.40 and 2020.3.1021
2. Set rendermode to classic or lightweight
3. Force to clear all Editor css files ( radEditor.CssFiles.Clear() );
4. Changed new line mode to P, BR and div
Please be advised if there a solution for it!
Thanks in advance,
Lan
Hi,
How can I let the RadSearchbox button act as the DefaultButton in an asp:Panel?
So that when ENTER is given no other buttons on the page are triggered?
Marc
Hi.
When we open a new radwindow using radopen client-side it doesn't work setting the ShowContentDuringLoad property.
Example code:
var wnd = radopen(sURL, null);
wnd.set_showContentDuringLoad(false);
I assume this should work ok?
Regards, Rolf
I could not find any api on the client-side to add an entry to the RadDropdownTree. Is this possible and if yes, then what would be some sample code? AutoPostBack property of RadDropdownTree is false, so I need to use client-side code.
I did find a method on the client side, but not sure how to use it. The api I found on my own is as below, but not sure what parameter can I pass to it and whether it will end up updating the dropdown tree automatically.
dropDownTree.get_entries()._add
Hi Guys
How can I export to PDF to a new/blank page, When it prints always preview the .PDF on the same page where either calendar or Gridview is viewed, using the following code
<ExportSettings>
<Pdf PageTopMargin="1in" PageBottomMargin="1in" PageLeftMargin="1in" PageRightMargin="1in"></Pdf>
</ExportSettings>
Hi Telerik Team
I am trying to get familiarize with Scheduler and would like to achieve the following result using it.
Is the below format possible in Scheduler. (Multi resource Grouping by Shift and then by Personnel and then by Role. )
Also, Is it possible to display multiple columns of resources in Scheduler, like in Gantt ?
I have went through some sample applications ( Multi resource grouping example of Room, User and Meeting ) and tried Group By="Room, User" but grouping only happens with the first Column and second column doesn't appear at all.
Thanks
Sathyendranath
Hi,
See attached screenshot, the wizard says OK, but it is not OK...
All Telerik files are dropped from the BIN folder.
Any suggestions?
Marc
On page load ...when navigating by keyboard focus first goes to the pagination links below the table then back up to the links in the Action table column. How to I set focus to the links within the Action column first when using the keyboard (tabbing) then the pagination links below the table.
Hi,
I am trying to implement RadSwitch in a Web Forms application. I copied the CSS from the Telerik Demo. When I apply the CSS class to a RadSwitch contained directly in the web form, it displays correctly. However, when I apply the same class to a RadSwitch contained in a web user control, it doesn’t display correctly.
I have tried several workarounds, including copying the CSS and embedding it into the web user control, but nothing works. The RadSwitch still displays incorrectly. The web user control and the RadSwitch that displays correctly are not in the same web form.
Here is the CSS:
/*Create elastic RadSwitch*/
.RadButton.RadSwitch.elasticSwitch .k-switch-handle {
width: 2em !important;
height: 2em !important;
display: flex !important;
}
.RadButton.RadSwitch.k-switch-on.elasticSwitch .k-switch-handle {
left: calc( 100% - 2em) !important;
display: flex !important;
}
.RadButton.RadSwitch.elasticSwitch,
.RadButton.RadSwitch.elasticSwitch .k-switch-container {
width: 4em !important;
display: flex !important;
}
Here are the CSS references for the web form and the web user control:
Web form CSS reference:
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
<link href="<%= Page.ResolveUrl("~/CSS/Custom.css") %>" rel="stylesheet" type="text/css" />
</asp:Content>
Web user control CSS reference:
<link href="<%= Page.ResolveUrl("~/CSS/Custom.css") %>" rel="stylesheet" type="text/css" />
Here is the HTML for the correctly displaying RadSwitch:
<telerik:RadSwitch runat="server" ID="TipoRequerimientoRequiereAcuse" Checked="false"
CssClass="elasticSwitch"
AutoPostBack="false">
</telerik:RadSwitch>
And here is the HTML for the RadSwich in the web user control:
<telerik:RadSwitch runat="server" ID="chkInformativo" Checked="false"
CssClass="elasticSwitch"
AutoPostBack="false">
</telerik:RadSwitch>