Hi,
I have used Telerik_AJAX_controls_2010_3_1215_for_SharePoint_2010_Trial.msi on my environment for Enhanced Rich Text Editor. My Environment is Sharepoint Foundation 2010 and Windows 7 64 bit. I installed this installer on my environment and my site has three features now available for RADEditor
I activated all the feature over my site and saved my list data,However, the rich text fields data are not saving.
Note: If I deactivate "Use an accessible UI in RadEditor" feature from my site, then saving works perfectly and view displays data.
what would be the reason behind it? Please suggest.
StripFormattingOptions="All"
"TestContent<
BR
>"
<
telerik:RadEditor
ID
=
"Editor1"
EditModes
=
"Design"
DialogsCssFile
=
"~/Skins/Default/DialogCSS.css"
SpellCheckSettings-AjaxUrl="~/Telerik.Web.UI.SpellCheckHandler.axd" Font-Bold="false"
ToolsWidth="360px" Content='<%#Eval("Content") %>' TabIndex="18" Height="30px" Width="100%"
BorderWidth="0px" ContentFilters="ConvertCharactersToEntities" runat="server"
StripFormattingOptions="All" ToolbarMode="ShowOnFocus" ToolsFile="~/Skins/BasicTools.xml"
Language="en-GB" SpellCheckProvider="EditDistanceProvider" SpellEditDistance="2"
OnClientSelectionChange="OnClientSelectionChange">
<
CssFiles
>
<
telerik:EditorCssFile
Value
=
"~/css/EditorAsTextBox.css"
/>
</
CssFiles
>
<
Tools
>
<
telerik:EditorToolGroup
>
<
telerik:EditorTool
Name
=
"AjaxSpellCheck"
Text
=
"AjaxSpellCheck"
/>
</
telerik:EditorToolGroup
>
</
Tools
>
<
Content
>
</
Content
>
</
telerik:RadEditor
>
I added the following script on my page and set RadEditor's attribute OnClientSubmit
="OnClientSubmit
"..
didn't work..
<
script
type
=
"text/javascript"
>
function OnClientSubmit(editor)
editor.fire("FormatStripper", { value: "All" });
</
script
>
<telerik:RadComboBox ID="cmbLocation" Name="Location" runat="server" DataTextField="Key" DataValueField="Value" TabIndex="18" Width="214"The ComboBox is then simply bound to a List<KeyValuePair<string,int>> datasource in code behind.
OnClientDropDownClosing="OnClientDropDownClosing" MarkFirstMatch="true" AllowCustomText="false">
<ItemTemplate>
<asp:CheckBox runat="server" ID="chkLocation" Text='<%# Eval("Key")%>'/>
</ItemTemplate>
</telerik:RadComboBox>
cmbLocation.Items.Insert(0, new RadComboBoxItem(Common.All, "-1"));This works more or less. When I run the app, the ComboBox reads "All". But there is also a blank checkbox in the first position. I don't want that to be there. But I do need to be able to tell if All is selected.
java script error is coming when we are using Telerik Calendar control in a page, and if we use SetFocusOnError="true"
Property.
Moreover we have used the ajax validator extender.
Please refer attachment.
can anyone have idea about any possible solutions?
<
telerik:RadComboBox
ID
=
"Cbo1"
runat
=
"server"
CssClass
=
"label"
Label
=
"Combox1 :"
Skin
=
"WebBlue"
OnClientSelectedIndexChanging
=
"LoadCbo2l"
OnItemsRequested
=
"Cbo1_ItemsRequested"
onclientitemsrequested
=
"ItemsLoaded"
ViewStateMode
=
"Enabled"
></
telerik:RadComboBox
>
<
telerik:RadComboBox
ID
=
"Cbo2"
Runat
=
"server"
CssClass
=
"label"
Label
=
"Combox2 :"
Skin
=
"WebBlue"
OnItemsRequested
=
"Cbo2_ItemsRequested"
OnClientItemsRequested
=
"ItemsLoaded"
ViewStateMode
=
"Enabled"
>
</
telerik:RadComboBox
>
<
telerik:RadCodeBlock
ID
=
"RadCodeBlock1"
runat
=
"server"
>
<
script
type
=
"text/javascript"
>
function LoadCbo2(combo, eventArqs) {
var 2ndCombo;
var item = eventArqs.get_item();
2ndCombo.set_text("Loading...");
if (item.get_index() > 0) {
Cbo2.requestItems(item.get_value(), false);
}
else {
2ndCombo.set_text(" ");
2ndCombo.clearItems();
}
}
</
script
>
</
telerik:RadCodeBlock
>