Telerik Forums
UI for ASP.NET AJAX Forum
15 answers
299 views
When I run spell checker from my web server I get the following error:
I've tried to search the forum for the same error type but have come up empty handed. If anyone can shed some light on my issue i'd really appreciate it.

Spell Check Handler Server Error:500
<html>
<head>
<title>Runtime Error</title>
<style>
body{font-family:"Verdana";font-weight:normal;font-size:.7em;color:black;}
p
{font-family:"Verdana";font-weight:normal;color:black;margin-top:-5px}
b{font-family:"Verdana";font-weightLbold,color:black;margin-top:-5px}
H1{
font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon}
pre{font-family:"LucidaConsole";font-size:.9em}
.marker{font-weight:bold;color:black;text-decoration:none;}
.version{color:gray;}
.error{margin-botton:10px;}
.expandable{text-decoration:unerline;font-weight:bold;
color:navy;curson:hand;}
</style>
<head>
 
<body bgcolor="white">
 
<span><H1>Server Error in'/'Application.<hr width=100%
size=1 color=silver></H1>
 
<h2> <i>Runtime Error</i></h2></span>
 
<font face="Arial,Helvetica, Geneva, SunSans-Regular,sans-serif">
 
<b>Description: </b>An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons).It could, however,be viewed by browsers running on the local server machine.
<br><br>
 
<b>Details:</b>To enable the details of this specific error message to be viewable on remote machines, please create a
<customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tab should then have its "mode"attribute set to &qyot;Off".<br><br>
 
<table width=100% bgcolor="#ffffcc">
<tr>
<td>
<code><pre>
 
<!-- Web...

Rumen
Telerik team
 answered on 13 Sep 2012
1 answer
83 views
Hi,

I am using Telegrik grid control in asp.net and using GridBoundColumn for DateTime data type as given below:

<

 

telerik:GridBoundColumn DataField="ChangedOnDate"

 

 

DataFormatString="{0:dd MMM yyyy}" HeaderText="When"

 

 

SortExpression="ChangedOnDate" UniqueName="When" DataType="System.DateTime"

 

 

meta:resourcekey="GridBoundColumnWhen">

 

 

</telerik:GridBoundColumn>

The filter expression "EqualsTo" does not work for the date field. I need urgent help.

Please share your thought/solution.

Thanks,
Rajesh

 

Milena
Telerik team
 answered on 13 Sep 2012
6 answers
354 views
Hi,

I want to do some coding on OnClientCloseHandler event of a RadWindow.
 I added a RadWindowManager and dynamically added RadWindow and how can code against the OnClientCloseHandler event of  RadWindow .
Please provide a solution.

Thanks for any assistance
Abhi
Top achievements
Rank 1
 answered on 13 Sep 2012
1 answer
65 views
hi team,

i want to highlight the current date in weekview... as like outlook calendar ..


is it possible?
Princy
Top achievements
Rank 2
 answered on 13 Sep 2012
1 answer
141 views
We sporadically have a problem when using the RadEditor where a user clicks on the ImageManager button, and when the image manager opens the entire window is greyed out and there is no path information displayed, rendering the window unusable.  Attempts to close and re-open the image manager usually result in the same result at this point (presumably because something is being cached?).  Our setup isn't very complicated, Each of our clients has their own unique folder that they upload images / documents / templates into, and we specify this in the code behind like this:

EMailContentEditor.ImageManager.UploadPaths = new[] { string.Format("/ImageLibrary/account{0}/images", p_AccountId) };
EMailContentEditor.ImageManager.DeletePaths = new[] { string.Format("/ImageLibrary/account{0}/images", p_AccountId) };
EMailContentEditor.ImageManager.ViewPaths = new[] { string.Format("/ImageLibrary/account{0}/images", p_AccountId) };

We do run multiple web servers and /ImageLibrary is virtual directory in IIS that points to a shared NAS. 

What i'm trying to find out is how i can find out more information about why these sporadic connection attempts are failing.  I've also contacted my data center to see if there are any kind of connection logs associated with our NAS that could show the error.  But i'd like to know is there an exception that is thrown or could be trapped when this error happens, or any way that i could force the RadEditor to retry the connection when it doesn't connect the first time?  We've been using this solution for a number of years now and it's always worked fine.  Lately i seem to be hearing more and more complaints about it, however in the grand scheme of things we're probably only talking a fraction of a %.

Any help or ideas you can provide are most appreciated.  We are using version 2012.2.619.40 in production and will be upgrading to 2012.2.815.40 in the next 2 weeks.

Regards,
-Mark
Vessy
Telerik team
 answered on 13 Sep 2012
1 answer
48 views
Hello

 See the following demo link

http://demos.telerik.com/aspnet-ajax/scheduler/examples/export/defaultcs.aspx

In this case in month tab. we can easily drag and drop the exam. I don't want to drag and drop option in case MONTH ..

How to disable the drag and drop in case of Month


Thanks
Regards
Rahul
Princy
Top achievements
Rank 2
 answered on 13 Sep 2012
2 answers
74 views
is there a sparkline chart for asp.net ajax grid? I see there is some mention of it in silverlight.

Thanks,
Marty
moegal
Top achievements
Rank 1
 answered on 13 Sep 2012
2 answers
202 views
We need tdf files for Japanese(ja-JP) and Chinese(zh-CN)  laguages. 
Venky
Top achievements
Rank 2
 answered on 13 Sep 2012
2 answers
208 views
Hi ,

i am facing issue when  i am making check box checked in iteam databound but its not woeking,please help me to solve this issue.

item databound code

  protected void grdExamDates_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
        {
            if (e.Item is GridDataItem && !(e.Item is GridDataInsertItem) && !e.Item.IsInEditMode)
            {
                GridDataItem item = e.Item as GridDataItem;
                AdminCheckExamDateView dataItem = item.DataItem as AdminCheckExamDateView;
                CheckBox checkBox = (CheckBox)item["colSelect"].Controls[0];
                if (dataItem.SELECTED_FLAG)
                    checkBox.Checked = true;
                if (ExamCompleted || AdminCheckReadOnly)
                {
                    if (checkBox != null)
                    {
                        checkBox.Enabled = false;
                    }                 
                }
               

            }
        }


and design code
  <tempo:TempoGridControl ID="grdExamDates" runat="server" OnNeedDataSource="grdExamDates_NeedDataSource"
                                            AllowPaging="false"  OnItemDataBound="grdExamDates_ItemDataBound" ViewEntityType="CGI.ESG.TEMPO.ViewEntity.AdminCheckExamDateView,CGI.ESG.TEMPO.ViewEntity" >
                                            <TempoCommandItem Enabled="true" ShowAddItemButton="false" />
                                            <ClientSettings EnablePostBackOnRowClick="false">
                                                <Resizing AllowColumnResize="true" />
                                                <Selecting AllowRowSelect="true" EnableDragToSelectRows="true"/>
                                                <Scrolling AllowScroll="true" UseStaticHeaders="true" ScrollHeight="84" />
                                          
                                            </ClientSettings>
                                            <MasterTableView CommandItemDisplay="Top" EditMode="InPlace" DataKeyNames="EXAM_ID, EXAM_TYPE_CODE">
                                                <Columns>
                                                  <telerik:GridClientSelectColumn UniqueName="colSelect" HeaderStyle-Width="30px"/>                                          
                                                    <telerik:GridDateTimeColumn HeaderText="Exam Date" DataField="EXAM_START_DATE" HeaderStyle-Width="100px"
                                                        DataFormatString="{0:MM/dd/yyyy}">
                                                    </telerik:GridDateTimeColumn>
                                                    <telerik:GridBoundColumn HeaderText="Exam Type" UniqueName="colExamType" DataField="EXAM_TYPE_DESC">
                                                    </telerik:GridBoundColumn>
                                                </Columns>
                                            </MasterTableView>
                                        </tempo:TempoGridControl>

Sathish
Top achievements
Rank 1
 answered on 13 Sep 2012
3 answers
187 views
Hi there,

nice controls! Actually bought 2 licenses a few days ago for my company ...

Here is my question:

How can I change the month (or week, day) of the scheduler based on an external event (like onclick() in ListBox1) - in JAVASCRIPT? No postback and/or web service, please!

Can this be done?
Yes => How?
No => Can you refer me to an example with server side code?
Thanks a million times!



Princy
Top achievements
Rank 2
 answered on 13 Sep 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?