Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
192 views
Hi, I get the following error

[Exception: Cannot read the configuration/dictionary language parameters!]
   Telerik.Web.UI.SpellCheckHandlerNoSession.ProcessRequest(HttpContext context) +583
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +181
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75

This happens when RadSpell makes a callback to Telerik.Web.UI.SpellCheckHandler.axd after starting a spell check in RadEditor. It works on other servers. Any pointers on where this might be coming from?
Hongyi
Top achievements
Rank 1
 answered on 28 Feb 2012
6 answers
213 views

We are having issues with our Mac Safari users when coping and pasting in the editor. The buttons in the toolbar do nothing and the short cuts do not work as well. At first I thought there was an issue on our end, but even the demos are your site do not work. 

 

Is there a workaround for this issue?

Janean Angeles
Top achievements
Rank 1
 answered on 28 Feb 2012
1 answer
101 views
Hi,
I have a word file saved in Database in a VarBinary Column (SQL 2008 server). I want to reconstruct this file for download on a button click. Please suggest how can I achieve this.
Thanks and Regards,
Deepika Karanth
Richard
Top achievements
Rank 1
 answered on 27 Feb 2012
1 answer
275 views
I'm trying to change the RadTextBoxes to readonly but it's not taking the change.

((Telerik.Web.UI.RadTextBox)uiControl).ReadOnly = true;

I have this in the page load event
Richard
Top achievements
Rank 1
 answered on 27 Feb 2012
13 answers
386 views
Hello Telerik Team,
Rad Editor Not Working Design mode in IE9
but its working in HTML mode when i check in debug mode
i observe that it didnt rendering the (HTML,head,body text-area )
in its frame
<telerik:RadEditor  ExternalDialogsPath="~/UserControls/EditorDialogs/" NewLineBr="False" runat="server" ID="txtRadEditor" CssClass="emailBody RadEditorOverride"
                           SkinID="DefaultSetOfTools" Width="410" Height="435" EnableResize="false" EditModes="All"
                           ToolsFile="~/UserControls/Fippex/EditorTemplate/CustomToolFile.xml">
                           <ImageManager MaxUploadFileSize="2097152" />
                           <Content></Content>
                           <CssFiles>
                               <telerik:EditorCssFile Value="~/Style/editor.css" />
                           </CssFiles>
                       </telerik:RadEditor>

Please Help me with this out As Soon As Possible
Regards
Steve
Top achievements
Rank 1
 answered on 27 Feb 2012
1 answer
190 views
Hi, is it possible to pick a color from a picture, instead from a palette. Or pick a color from anywhere in the browser. Thanks, Henry
Richard
Top achievements
Rank 1
 answered on 27 Feb 2012
1 answer
280 views
Hi,

I have RadGrid with AllowMultiRowSelection is true.

i.e. AllowMultiRowSelection="true"

But due to this we are not able to select any cell for copy / paste option.

Once we set AllowMultiRowSelection="false", it work fine for selection.

Please let us know to solution for the same.

Regards,
Shirish
Richard
Top achievements
Rank 1
 answered on 27 Feb 2012
1 answer
168 views
Hi,

I am new to telerik, please help me.

I want to reset my radfilter using following script

rfGridFilter.RootGroup.Expressions.Clear();
rfGridFilter.RecreateControl();

Above code runs well in other place in my page instead of page_load.
actually I got new requirement for my project that user can change the profile by selecting new profile in rad combo box profile list.
To accomplice this I am creating radgrid dynamically on page_init and doing datasetup() method on page_load for grid binding when page first time load or when user change profile.

My problem is that when user change profile I want to reset(clear radfilter) filter and after that I am calling datasetup method.
But my radgrid is still using previous filter expression while I am clearing my radfilter using above code.
I don't know where I am doing wrong. While above code runs well in other place This is creating problem when I am calling this before datasetup.
Please help me. Thanx in advance!!!
I am listing other code that I am using.

On page_init

//grid creation dynamic code

            // Main Grid Config & Code
            rgModuleGrid = new RadGrid();
            rgModuleGrid.ID = "rgModuleGrid";

            rgModuleGrid.ItemCreated += rgModuleGrid_ItemCreated;
            rgModuleGrid.ItemCommand += rgModuleGrid_ItemCommand;
            rgModuleGrid.PreRender += rgModuleGrid_PreRender;
            
            rgModuleGridSetup(profileId);//set all the grid properties and configuraion for mastertable view and clientsettings
            GridPlaceHolder.Controls.Add(rgModuleGrid);

On Page_load
////for clear radfilter when profile changes
if (Convert.ToInt32(ViewState["profileId"]) != profileId && IsPostBack)
                {                                        
                    rfGridFilter.RootGroup.Expressions.Clear();
                    rfGridFilter.RecreateControl();

                    DataSetup();
                }
                else
                {
                    DataSetup();                   
                }

My Datasetup method is:

protected void DataSetup()
{
////Here oadsMain is a open access data source controls and EmpByAVF, EmpByAVR and EmpByAVY is the ORM view that work just like table.
 oadsMain.ObjectContextProvider = "iTracker.Data.Orm.iProjectModel, iTracker.Data.Orm";
                if(profileId == 36)
                    oadsMain.TypeName = "iTracker.Data.Orm.EmpByAVF";
                else if(profileId == 37)
                    oadsMain.TypeName = "iTracker.Data.Orm.EmpByAVR";
                else if (profileId == 38)
                    oadsMain.TypeName = "iTracker.Data.Orm.EmpByAVY";

                oadsMain.EnableDelete = false;
                oadsMain.EnableUpdate = false;
                oadsMain.EnableInsert = false;
             
                oadsMain.StoreOriginalValuesInViewState = false;
                rgModuleGrid.DataSourceID = "oadsMain";               
 }             



 
Vinod
Top achievements
Rank 1
 answered on 27 Feb 2012
8 answers
176 views
2009.2.906.35  VS2008 SP1, XP, IE8.

I was able to isolate to minimally what is needed to reproduce the problem.

<%@ Page Language="vb" AutoEventWireup="false" enableEventValidation="false" CodeBehind="Default.aspx.vb" Inherits="TestAjax._Default" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head runat="server"
    <title>Test</title> 
 
</head> 
<body> 
    <form id="form1" runat="server"
 
    <telerik:RadScriptManager ID="ScriptManager1" runat="server" ScriptMode="Release"
    </telerik:RadScriptManager> 
     
    Use drop down, then put in value in first textbox, the focus will go to 2nd textbox but you cannot enter anything. 
<br /> 
If you click 2nd textbox again, type in, and also fill out 3rd textbox.  [Go], you'll see that the 2nd textbox value gets lost.          
<br /> 
If EnableAjax="false" then problem does not exist. 
<br /> 
<telerik:RadComboBox ID="cboFunction" EmptyMessage="Select a function" runat="server" AutoPostBack="true"
                        <Items> 
                            <telerik:RadComboBoxItem Text="" /> 
                            <telerik:RadComboBoxItem Text="test1" Value="test1" /> 
                        </Items> 
                        <ExpandAnimation  Type="None" /> 
                        <CollapseAnimation Type="None" /> 
                    </telerik:RadComboBox> 
 
<br />                     
                <asp:PlaceHolder ID="myPlaceHolder" runat="server"></asp:PlaceHolder> 
 
            <asp:Button ID="btnGo" runat="server" Width="100px" Text="Go" Enabled="true" /> 
     
            <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" UpdatePanelsRenderMode="Inline" > 
            <AjaxSettings>        
                <telerik:AjaxSetting AjaxControlID="cboFunction"
                    <UpdatedControls> 
                        <telerik:AjaxUpdatedControl ControlID="myPlaceHolder" /> 
                    </UpdatedControls>               
                </telerik:AjaxSetting>                                                                        
            </AjaxSettings> 
        </telerik:RadAjaxManager> 
    </form> 
</body> 
</html> 
 
<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="ucTest.ascx.vb" Inherits="TestAjax.ucTest" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
     
<telerik:RadTextBox runat="server" ID="txtSubAccountNo" AutoPostBack="true" Width="450px"></telerik:RadTextBox> 
<br /> 
<telerik:RadTextBox runat="server" ID="txtSubAccountDesc" ReadOnly="true" BackColor="Gainsboro" TabIndex="-1" Width="450px"></telerik:RadTextBox> 
<br /> 
<telerik:RadTextBox runat="server" ID="txt2"  Width="450px"></telerik:RadTextBox> 
<br /> 
<telerik:RadTextBox runat="server" ID="txt3"  Width="450px"></telerik:RadTextBox> 
<br /> 

Vasil
Telerik team
 answered on 27 Feb 2012
1 answer
125 views

Hi guys.

I sometimes get "invalid xhtml" errors when exporting from radgrid.
This is actually not my problem per se.

I am allowing users to export tables from databases, and some of them do contain old and invalid markup. Verifying/editing the markup isn't really an option.

My problem is, that even after including all code execution within "Try" I'm still unable to catch the errors and letting users know what's wrong. For some reason I still always get the unfriendly (for regular users) .net error page.

There must be a way to catch the errors right?

Regards,
-DJ-
-DJ-
Top achievements
Rank 1
 answered on 27 Feb 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?