Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
155 views
Hi Telerik team,

I have a number of columns in my radgrid and when i try to move a particular column to another position, it actually swaps the columns instead of just placing the column of my choice in the place that i desire. Is there a way i can avoid that swap. I hope i made sense.

Thanks,
Chandra
Chandra
Top achievements
Rank 1
 answered on 01 Aug 2012
2 answers
112 views
I am using RadEditor with the MS Word spelling provider.  I used the instructions at http://www.telerik.com/community/forums/aspnet-ajax/spell/enabling-ms-word-spell-checking.aspx to get it working.

It is spell-checking, but it does not seem to be using the en-US.tdf file in my ~/App_Data/RadSpell/ directory.  The special words (medical terms) I added to the dictionary are still flagged as misspellings.  Also, I can rename the file, and it still does spell-checking.

Here is my markup:
<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
Rumen
Telerik team
 answered on 01 Aug 2012
1 answer
135 views
When using radeditor a 404 error is displayed in the popup for adding an image or creating a link.

The error only happens on the server and works fine on localhost.

Also, when the popup is displayed it appears behind the rad menu.
Rumen
Telerik team
 answered on 01 Aug 2012
1 answer
70 views
Hello everyone,
I have a problem with my Headercontextmenu, can somebody please help me?
This is my situation:
I have a hierarchical RadGrid with a detailtable. On my RadGrid I enabled a headercontextmenu with an additional control to add a new item in my RadGrid.
So I want a headercontextmenu on the detailtable; now when I click on my "add new record" - button in the headercontextmenu of the detailtable it adds a new item in my mastertable.
How can I check on which level the button was clicked?
Or can I add an additional headercontextmenu only for my detailtable?

Thanks in advance,
regards esmyy


Eyup
Telerik team
 answered on 01 Aug 2012
1 answer
95 views
I have set of controls inside of a list view in which I want to be disabled until a certain checkbox is checked.
My current code looks like this:
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;
            }
}

However, with this code I get null reference exception when it tries to set the Enabled setting.
Josh
Top achievements
Rank 1
 answered on 01 Aug 2012
1 answer
101 views
Hello,
i am install the Asp.net Ajax Q2 2012
when i start the demo and click on  grid its how me error related to sql server

Server Error in '/RadControls_AspNetAjax' Application.

The user instance login flag is not supported on this version of SQL Server. The connection will be closed.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Data.SqlClient.SqlException: The user instance login flag is not supported on this version of SQL Server. The connection will be closed.

Source Error: 

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.


and i have already install Sqlserver 2008,sql server 2008r2,and sqlserver 2012 
so why this error come in this demo 
thanks

Slav
Telerik team
 answered on 01 Aug 2012
2 answers
934 views
I have created a Rad Button on Page_Init Method for Contenet Palce Holder. I want call onClientClickEvent whenever i click on it.

For Example:

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()");

Thanks,
Sandeep
Slav
Telerik team
 answered on 01 Aug 2012
1 answer
102 views
I'm trying to add a GridClientSelectColumn with checkboxes to the FileExplorer to make it easier to select (check) files to be processed.

For some reason, the row appears selected but the checkbox doesn't show.

I've inserted the code I have so far below.

Any ideas?

Ken

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);
Dobromir
Telerik team
 answered on 01 Aug 2012
2 answers
109 views
At the buttom of the editor are the mode buttons Design, HTML, Preview.  

Can you please advise how I would l change the button text for the Design button to Edit.
Rumen
Telerik team
 answered on 01 Aug 2012
1 answer
106 views

Hello,

in the Link Manager Dialog, for the fields with id="LinkURL" and id="LinkTargetCombo",
I would like to use respectively a RadTextBox and a RadComboBox (the aspect of the
corresponding components input and select is not that of the selected skin fot the RadEditor).
How can I modify the JavaScript code in LinkManager.ascx so that everything is working fine?
For the RadTextBox I've tried to change $get("LinkURL") with $get("LinkURL_text"), but when
I click on the RadTextBox its content disappears.
 
Thank you very much

AB

Rumen
Telerik team
 answered on 01 Aug 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?