or
<telerik:RadEditor runat="server" ID="edNotes" Height="200" Width="98%" ContentAreaMode="Iframe" EditModes="Design" EnableResize="true" ToolsFile="~/App_Data/ToolsFile.xml" SpellCheckSettings-CustomDictionarySuffix="Custom" SpellCheckSettings-DictionaryLanguage="en-US" SpellCheckSettings-DictionaryPath="~/App_Data/RadSpell/" SpellCheckSettings-SpellCheckProvider="MicrosoftWordProvider" SpellCheckSettings-AllowAddCustom="true" /> I have the following in my Page_Load routine:edNotes.SpellCheckSettings.SpellCheckProviderTypeName = typeof(Telerik.Web.UI.WordSpellCheckProvider).AssemblyQualifiedName;Is the MS Word provider supposed to use en-US.tdf, or does it use the dictionary that Word/Office uses? I tested that and it does not seem to be using the Word dictionary. Also, I need to get the Custom dictionary file working as well. Please comment on that as well. Thanks, - Tim



protected void chckRSMCA_CheckedChanged(object sender, EventArgs e){ CheckBox checkboxRS = (CheckBox)sender; RadTextBox Id = (RadTextBox)rlvListView.FindControl("txtRSFarmIdMCA"); RadTextBox Address = (RadTextBox)rlvListView.FindControl("txtRSSvrAddressMCA"); if (checkboxRS.Checked) { Id.Enabled = true; Address.Enabled = true; } else { Id.Enabled = false; Address.Enabled = false; }}An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
RadButton b = new RadButton();b.ID = "btnAddNew";b.Text = Resources.GetText("Add");b.CommandName = "Add";b.Skin = "Office2010Silver"; b.AutoPostBack = false;b.Icon.PrimaryIconCssClass = "actionBarAdd";b.Attributes.Add("OnClientClicked", "UsersActionButtonClicked()");GridClientSelectColumn GridClientSelectColumn1 = new GridClientSelectColumn();GridClientSelectColumn1.UniqueName = "Select";GridClientSelectColumn1.ItemStyle.VerticalAlign = System.Web.UI.WebControls.VerticalAlign.Top;GridClientSelectColumn1.ItemStyle.Width = System.Web.UI.WebControls.Unit.Pixel(35);GridClientSelectColumn1.HeaderStyle.VerticalAlign = System.Web.UI.WebControls.VerticalAlign.Top;GridClientSelectColumn1.HeaderStyle.Width = System.Web.UI.WebControls.Unit.Pixel(35);GridClientSelectColumn1.HeaderText = "";GridClientSelectColumn1.Visible = true;RadFileExplorer1.Grid.Columns.AddAt(0,GridClientSelectColumn1);