Hello,
Current highlight method in RadComboBox use an <em> tag and this make a word break in Arabic Like languages (Arabic, Persian, Urdu,...) my suggestion is changing highlight way from <em> to <span class="highlight"> .
If any one wants to make a multi language site and have same problem please tell telerik.
This is my converstion with telerik.
Kind regards,
Mostafa Anooseh
Posted on on May 5
Posted on on May 5
Hello Abert,
I can't understood:
Note: you are using an approch like my solution for this bug in RadEditor Find section.
Kind regards,
Mostafa Anoosheh
Posted on on May 4
Posted on on May 4
Posted on on May 4
Posted on on May 1
Dear Albert,
Thanks for reply.
I think you have not enough information about Arabic like languages.
In Arabic like languages (Arabic, Persian, Urdu,...) we have two type of letters.
Some of them are synthesis type letter like س، ل، ... and must join the next letter inside the word.
When we use <em> tag the word will break to two and it's wrong but with span tag we will get correct view of words.
Please check attached htm file as a simple sample.
Kind Regards
Mostafa Anoosheh
Posted on on Apr 29
Posted on on Apr 29
Posted on on Apr 29
Posted on on Apr 29
Posted on on Apr 14
Posted on on Apr 14
Posted on on Apr 14
In Rad Editor html view, when we paste an html content in IE,
<div>
<script language="javascript" type="text/javascript" src="http://www.rsscontenttool.com/feed.js?source=0&url=http://www.npr.org/rss/rss.php?id=1066&width=300&text_alignment=Left&font=-1&text_size=undefined&frame_enabled=false&frame_color=AFAACA&link_color=AFAACA&link_background_color=ffffff&link_spacing=1&max_items=5&new_window=true&show_xml_button=false"></script>
</div>
then click Design->HTML->Design view, a javascript error occurred. ie, Permission denied
But its work's fine in firefox.
<telerik:RadEditor ID="RadEdit" Skin="Web20" runat="server" EnableViewState="false" ContentFilters="None"></telerik:RadEditor>
Thanks,
Tiju
treeview.ContextMenus[i].Items[i].Visible = false;}
but this will hide the delete RadMenuItem for ALL nodes at level 2 in all level 1 nodes.
Is it possible to hide a RadMenuItem within a group of nodes?
eg ..........
Parent A
child 1 // display delete RadMenuItem
child 2 // display delete RadMenuItem
child 3 // display delete RadMenuItem
Parent B
child 1 // HIDE the delete RadMenuItem
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="RadUploadTest._Default" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <%@ register tagprefix="rad" assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" %> |
| <html xmlns="http://www.w3.org/1999/xhtml" > |
| <head runat="server"> |
| <title>Untitled Page</title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <div> |
| <input type="file" id="input" runat="server" /> |
| <asp:button id="btn" runat="server" onclick="ClickUpload" text="Upload" causesvalidation="false" /> |
| <asp:scriptmanager id="sm" runat="server"></asp:scriptmanager> |
| <rad:radprogressarea id="radProgressArea" runat="server" style="z-index: 100;" /> |
| <rad:radprogressmanager id="radProgressManager" runat="server" /> |
| <br /> |
| <br /> |
| File size: <asp:literal id="literalFileSize" runat="server" /> |
| <br /> |
| <br /> |
| <br /> |
| <br /> |
| Description: |
| <asp:textbox id="textDescription" runat="server" /> |
| <asp:requiredfieldvalidator id="valDescriptionRequired" |
| controltovalidate="textDescription" |
| display="Dynamic" |
| runat="server" |
| text="*" /> |
| <asp:button id="btnAnotherPostback" runat="server" text="Postback" onclick="ClickPostback" /> |
| </div> |
| </form> |
| </body> |
| </html> |
| using System; |
| using System.Web.UI; |
| using Telerik.Web.UI; |
| namespace RadUploadTest { |
| public partial class _Default : Page { |
| protected void ClickUpload(object sender, EventArgs e) { |
| RadUploadContext uploadContext = RadUploadContext.Current; |
| if (uploadContext != null && uploadContext.UploadedFiles.Count == 1) { |
| UploadedFile file = uploadContext.UploadedFiles[0]; |
| if (file != null) |
| literalFileSize.Text = file.ContentLength.ToString(); |
| } |
| } |
| protected void ClickPostback(object sender, EventArgs e) { |
| Page.Validate(); |
| } |
| } |
| } |
| <httpRuntime maxRequestLength="102400" executionTimeout= "3600" /> | |
| <system.web> | |
| ... | |
| <httpHandlers> | |
| <remove verb="*" path="*.asmx" /> | |
| <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.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" verb="*" validate="false" /> | |
| <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" /> | |
| </httpHandlers> | |
| <httpModules> | |
| <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" /> | |
| </httpModules> | |
| ... | |
| </system.web> | |
| <system.webServer> | |
| <validation validateIntegratedModeConfiguration="false" /> | |
| <modules> | |
| <remove name="ScriptModule" /> | |
| <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="RadUploadModule" preCondition="integratedMode" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" /> | |
| </modules> | |
| <handlers> | |
| <remove name="WebServiceHandlerFactory-Integrated" /> | |
| <remove name="ScriptHandlerFactory" /> | |
| <remove name="ScriptHandlerFactoryAppServices" /> | |
| <remove name="ScriptResource" /> | |
| <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
| <add name="Telerik_RadUploadProgressHandler_ashx" verb="*" preCondition="integratedMode" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" /> | |
| <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" /> | |
| </handlers> | |
| </system.webServer> |
| <telerik:RadScriptManager ID="RadScriptManager1" Runat="server"> | ||
| </telerik:RadScriptManager> | ||
| <telerik:RadProgressManager ID="RadProgressManager1" Runat="server" /> | ||
| <telerik:RadUpload ID="RadUpload1" Runat="server" ControlObjectsVisibility="All" | ||
| InitialFileInputsCount="2" MaxFileInputsCount="5" MaxFileSize="1000000" | ||
| ReadOnlyFileInputs="True" Skin="Vista" TargetFolder="~/temp"> | ||
| </telerik:RadUpload> | ||
| <telerik:RadProgressArea ID="RadProgressArea1" Runat="server" | ||
| DisplayCancelButton="True" Skin="Vista"> | ||
| <Localization Uploaded="Uploaded"></Localization> | ||
| </telerik:RadProgressArea> | ||
| <hr /> <br /> | ||
| <asp:Button ID="Button1" runat="server" Text="submit" /> |