i have a Telerik RadEditor control. I have input that will include single quote ' characters. When the content is inserted, the single quotes remain. When the content is updated, the editor replaces them with "%20".
Is there a way to change the Regex that happens on submission? I've tried changing editing the StripFormattingOptions to "None". But it still strips out single quotes and inserts "%20" instead.
Hi,
I have problem in opening radwindow, postback occurs on everytime when i open the radwindow.
i used button click for opening radwindow. i pasted the code below, which i have used.
<
telerik:RadButton
ID
=
"create"
Text
=
"New meeting"
runat
=
"server"
OnClientClicking
=
"Open"
AutoPostBack
=
"false"
CausesValidation
=
"false"
Skin
=
"WebBlue"
Font-Bold
=
"true"
Height
=
"22px"
Width
=
"97px"
ToolTip
=
"Click here to Create a new meeting"
>
</
telerik:RadButton
>
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
EnableShadow
=
"true"
EnableViewState
=
"false"
></
telerik:RadWindowManager
>
<
telerik:RadWindow
id
=
"radCreatePopup"
NavigateUrl
=
"CreateMeeting.aspx"
Top
=
"30"
OnClientShow
=
"OnClientshow"
Left
=
"100"
VisibleStatusbar
=
"false"
Modal
=
"true"
CenterIfModal
=
"true"
OnClientClose
=
"Close"
runat
=
"server"
Width
=
"770px"
Height
=
"390px"
Skin
=
"WebBlue"
Behaviors
=
"Resize, Close, Move, Reload"
ReloadOnShow
=
"True"
/>
and javascript function ..
(
function
(global, undefined) {
var
button =
null
;
function
OnClientshow(sender, eventArgs) {
}
function
Open() {
var
oWnd = $find(
"<%= radCreatePopup.ClientID %>"
).show();
}
global.OnClientshow = OnClientshow;
global.Open = Open;
})(window);
function
Close() {
var
oWnd = $find(
"<%= radCreatePopup.ClientID %>"
).Close();
return
false
;
}
Hi,
I am copying text from notepad and pasting it in Editor in design mode and when i try to see it in HTML mode, a paragraph tag is inserted around the text.
Could you please advise me some solution for this issue?
Thank you​
Hey guys we've noticed a change in how the RemoveElement feature of the WYSIWYG works. Previously clicking RemoveElement in the editor caused the specified tag, and it's contents to be removed, now it's only removing the tag. The tag's inner content remains in the document. We desire to have the previous functionality restored. This was a very useful feature, especially for training users who don't have much HTML knowledge to edit complex html documents with messing them up. I've reproduced this issue using your demo projects and recorded it in a video here: https://www.youtube.com/watch?v=zXDOyv_ZoRc&feature=youtu.be&hd=1
Please let me know how we can restore this feature to it's previous functionality.
Thanks!
-Mark
value is like $5,000,000,000.00 i want to show this value as 5 billion or $6,000,000,000.00 as 6 billion like this can any one help me....
like 1k,100k,200k............
Hi,
I have problem with changing the language of gantt view. I followed the tutorial in the link below in order to change the display language of gantt view.
Tutorial: http://demos.telerik.com/aspnet-ajax/gantt/examples/accessibility-and-internationalization/localization/defaultcs.aspx
If I change the language the gantt view is only partly translated. "Day/Week/Month/Year"-Buttons in the top right corner stay in English.
Thanks.
I would like to tie the exposure of a radgrid in the form of a Bootstrap Popover on the click event of a cell in another RadGrid. I currently have a radgrid with 3 levels of hierarchy. At any point in the hierarchy, the users may want to see a decomposition of a number in a grid. Think of something like a Timesheet summary number, vs the actual projects charged. Rather than get crazy with the nesting of grids down to 4 and 5 levels deep, I thought that from a UI perspective it would be better in this case to allow someone to click on a cell and get additional details via a bootstrap popover, bootstrap modal, or windows popup in that order of preference.
From what I can tell about popovers, however they seem kind of limited in content. Anyone ever tried this before?