Exception information:
Exception type: NullReferenceException
Exception message: Object reference not set to an instance of an object.
Thread information:
Is impersonating: True
Stack trace: at Telerik.WebControls.WordSpellCheckProvider.CheckWord(ITextWord current, ITextWord previous)
at Telerik.WebControls.SpellChecker.CheckText()
at Telerik.WebControls.SpellCheckHandler.ProcessSpellCheckRequest(String text)
at Telerik.WebControls.SpellCheckHandler.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

Hi,
When i try to do spell check in rad editor i get the below javascript error
RadSpell error. Server returned error: 500
Please, see the help for more details: RadSpell 3.x - Configuration - SpellCheckHandler.
/Administration/RadControls/Spell/Telerik.RadSpellCheckHandler.ashx
Internal Server Error
<html>
<head>
<title>No dictionary loaded. Set the DictionaryPath property before spellchecking.</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-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
pre {font-family:"Lucida Console";font-size: .9em}
.marker {font-weight: bold; color: black;text-decoration: none;}
.version {color: gray;}
.error {margin-bottom: 10px;}
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
</style>
</head>
<body bgcolor="white">
<span><H1>Server Error in '/Administration' Application.<hr width=100% size=1 color=silver></H1>
<h2> <i>No dictionary loaded. Set the DictionaryPath property before spellchecking.</i> </h2></span>
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
<b> Description: </b>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.
<br><br>
<b> Exception Details: </b>System.ArgumentException: No dictionary loaded. Set the DictionaryPath property before spellchecking.<br><br>
<b>Source Error:</b> <br><br>
<table width=100% bgcolor="#ffffcc">
<tr>
please help me with this issue.
thanks
Poornima



| var retvals = retval.split("|"); /* retval is a string such as : |
| "10879|Produktgrupp «Ny produktgrupp»|PRODUKTGRUPP|/Icons/TreeView/ImageCreate.aspx?nodetype=PRODUKTGRUPP&alias=False&icontype=normal|/Icons/TreeView/ImageCreate.aspx?nodetype=PRODUKTGRUPP&alias=False&icontype=expanded|Ny produktgrupp" */ |
| var node_id = retvals[0]; |
| var tooltip = retvals[1]; |
| var category = retvals[2]; |
| var imageurl = retvals[3]; |
| var expimageurl = retvals[4]; |
| var nodename = retvals[5]; |
| var node = new Telerik.Web.UI.RadTreeNode(); |
| node.set_text(nodename.replace(/</g,"<").replace(/>/g, ">")); |
| node.set_target("content"); |
| node.set_value(node_id); |
| var navurl = "content.aspx?id_catalogue=1&data_id_node="+node_id+"&id_category="+category+"&tree_id_node="+node_id; |
| node.set_navigateUrl(navurl); |
| node.set_imageUrl(imageurl); |
| node.set_expandedImageUrl(expimageurl); |
| node.set_contextMenuID(category); |
| node.set_category(category); |
| // g_parent_node is a global variable with the parent node |
| g_parent_node.get_nodes().insert(0, node); |
| node.get_textElement().title = tooltip; |
| if (!g_parent_node.get_expanded()) { |
| g_parent_node.expand(); /* If g_parent_node had no childnodes before I added one in the code above, this expansion can not be caught!! Nither ClientNodeExpanding nor ClientNodeExpanded is fired. But g_parent_node is actually expanded! */ |
| } |
| Text='<%# Eval( "Description" ) %>' |
| GridItem gridItem = e.Item as GridItem; |
| if (!gridItem.OwnerTableView.IsItemInserted) |