Hi Support,
I am using telerik spread sheet control. I am able to load my excel file but when i am trying to key large text it wont get spaces between words.
Please do needful.
Thanks,
Parimal
I've got an application with lots of existing text from a prior version of the RadEditor (2014), and it's all in NewLineMode = Br, so the lines are separated by <br/> tags. One option I read about was putting in a bit of JS which lets the new version (2017.3.913) use "legacy behavior" for block comments, such as bulleting lines of text. I tried it, but found it had another problem: It would duplicate the lines it was bulleting. See attached images for the "story".
This is low priority for me, since I've already decided not to use Legacy mode anyway (nor BR line mode). Otherwise I would be opening a ticket. But since it's not that important to me, I thought I'd just ask about it here, and see if anyone else has noticed this, or if the company is already aware of it.
Hi,
I have a form with many checkbox and each checkbox has a RadCombo or RadTextBox beside. When checkbox change, the application need enable or disable the respective RadComboBox or RadTextBox.
When I use with RadTextBox was working fine. But I call the RadComBox the $Find JQuery return null.
I would like have one or twice(combo and text) Javascript function. I don´t like create one JS with <RadComboBoxXX.ClientID> for each ComboBox. And don´t use server code.
Thanks for any help.
<
script
type
=
"text/javascript"
>
function EnableDisable(chk, ctrl) {
var e = $find(ctrl);
if(chk) {
e.enable();
}
else {
e.disable();
}
}
</
script
>
---- Work Fine----
<
asp:Checkbox
ID
=
"CheckBox1"
runat
=
"server"
OnClick
=
"EnableDisable(this.checked,'RadTextBox1');"
/>
<
telerik:RadTextBox
ID
=
"RadTextoBox1"
runat
=
"server"
/>
---- Don´t work ----
<
asp:Checkbox
ID
=
"CheckBox2"
runat
=
"server"
OnClick
=
"EnableDisable(this.checked,'RadComboBox2');"
/>
<
telerik:RadComboBox
ID
=
"RadComboBox2"
runat
=
"server"
/>