Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
44 views
Hi,

I have a load-on-demand RadTabStrip inside a Window that is set to a fixed width and height (the window, that is).  My problem is that the last PageView attached to the RadMultiPage that is referenced by the RadTabStrip is a summary page that may overflow to the bottom of the RadWindow based on what the user selects under previous tabs, but the RadWindow does not display a scroll bar to reflect this.  I can only view the content that is at the bottom of the RadWindow by clicking on my mouse's scroll wheel.  I have tried to fix this by setting the height of that last RadPageView both client and server-side, and I can tell that it is in fact set to that height - but still no scroll bar.  Is there a way I can accomplish this?

Thank you.
Condorito
Top achievements
Rank 1
 asked on 01 Aug 2012
2 answers
120 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
103 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
118 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
60 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
86 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
85 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
915 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
96 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
101 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?