Protected Sub RadMenu1_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadMenuEventArgs) Handles RadMenu1.ItemDataBound
If e.Item.Value Is Nothing Then
imgPhoto.ImageUrl = "~/image/NoPhotoAvailable.jpg"
Else
imgPhoto.ImageUrl = e.Item.Value
End If
End Sub
<SafeControl> entries into the web.config and all it seemed to do was give me the 'live examples' application.
| <telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy" runat="server" > |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="RadTreeView"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadTreeView" /> |
| <telerik:AjaxUpdatedControl ControlID="IsShared" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManagerProxy> |
I am delegating AJAX request in page load to call my method on server .
| RadAjaxManager manager = RadAjaxManager.GetCurrent(Page); |
| manager.AjaxRequest += new RadAjaxControl.AjaxRequestDelegate(RadAjaxManager_RadAjaxRequest); |
"RadAjaxManager_RadAjaxRequest" method is called and I am doing all my processing inside it. Up till now things are fine but the Issue is I want to update selected treeview node after performing my operation which is somthing not working.
Can you guid me how I can update selected node in treeview after performing my operation from "RadAjaxManager_RadAjaxRequest"?
If possible give me some running example which can give me clear understanding.
Thanks in advance,
Frank
Hi
I have problems using the spell checker in RadEditor in Sharepoint.
This is what I get when I try to run the spellchecker :
I have versions 2010.2.826.20 and 2010.2.826.35 of Telerik.Web.UI.dll in GAC.
I add the languages and the spell checking dropdown box in the tools.xml file as following:
<tools name="InsertToolbar" enabled="true" >
<tool name="AjaxSpellCheck"/>
</tools>
<languages>
<language code="de-DE" title="Deutsch" />
<language code="en-US" title="Englisch" />
<language code="fr-FR" title="France" />
<language code="sv-SE" title="Svenska" />
</languages>
I have the dictionary files in all of the following folders:
This is how my web.config httpHandlers section looks like:
<httpHandlers>
<remove verb="GET,HEAD,POST" path="*" />
<add verb="GET,HEAD,POST" path="*" type="Microsoft.SharePoint.ApplicationRuntime.SPHttpHandler, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
<add verb="OPTIONS,PROPFIND,PUT,LOCK,UNLOCK,MOVE,COPY,GETLIB,PROPPATCH,MKCOL,DELETE,(GETSOURCE),(HEADSOURCE),(POSTSOURCE)" path="*" type="Microsoft.SharePoint.ApplicationRuntime.SPHttpHandler, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
<add verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
<add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
<add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI" verb="*" validate="false" />
</httpHandlers>
And finally, in the onload method of the user control I tried any combination of the following lines of code, as well as any possible option for the SpellCheckProvider enumeration.
editor.SpellCheckSettings.AllowAddCustom = true;
editor.SpellCheckSettings.SpellCheckProvider = SpellCheckProvider.MicrosoftWordProvider;
editor.SpellCheckSettings.EditDistance = 2;
editor.SpellCheckSettings.AjaxUrl = "Telerik.Web.UI.SpellCheckHandler.axd";
FYI I am using the rad editor inside a roddock which is in a web user control. The web user control in turn is loaded into a sharepoint webpart.
I appreciate your help.
Ali
AddHandler fdCourseStartDateDateTimePicker.Calendar.DefaultViewChanged, AddressOf fdCourseStartDateDateTimePicker_Calendar_DefaultViewChangedProtected Sub fdCourseStartDateDateTimePicker_Calendar_DefaultViewChanged(ByVal sender As Object, ByVal e As Telerik.Web.UI.Calendar.DefaultViewChangedEventArgs) System.Diagnostics.Debug.WriteLine("") End Sub