简体   繁体   中英

ContextMenu Hyperlink in RadRichTextBox WPF

When i add a Physical path in a Hyperlink from ContextMenu of RadRichTextBox i see http:// getting added extra but in only in one scenario.

  1. I tried adding the link like below(The folder name has no spaces at the last),

带有Np空间的文件夹名称

the above gives me correct URL.

  1. When i add the link with a folder which as spaces at the last like,

在此处输入图片说明

I get the output like below when i edit the Hyperlink and see,

在此处输入图片说明

//XAML

     <telerik:RadRichTextBox x:Name="ss" Grid.Column="0" Grid.Row="1" telerik:StyleManager.Theme="Windows8" AcceptsReturn="True" VerticalScrollBarVisibility="Auto" FontWeight="Normal" AcceptsTab="True" telerik:HtmlDataProvider.Source="{Binding Notes, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" IsSpellCheckingEnabled="True"  HyperlinkClicked="ritFnBNotes_HyperlinkClicked"   DocumentInheritsDefaultStyleSettings="True" Height="150" CommandExecuting="ritNotes_CommandExecuting" IsReadOnly="{Binding EnableForEdit, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, Converter={StaticResource InverseBool}}" DocumentContentChanged="Notes_DocumentContentChanged">
     <telerik:RadRichTextBox.SelectionMiniToolBar >                                                     <telerik:SelectionMiniToolBar telerik:StyleManager.Theme="Windows8" />
     </telerik:RadRichTextBox.SelectionMiniToolBar>                                                <telerik:RadRichTextBox.Document>
         <telerik:RadDocument>
      <telerik:Section>
      <telerik:Paragraph FontSize="8" LineSpacing="0" LineSpacingType="Exact"></telerik:Paragraph>
     </telerik:Section>
      </telerik:RadDocument>    
 </telerik:RadRichTextBox.Document>
     <i:Interaction.Triggers>
     <i:EventTrigger EventName="DocumentContentChanged">
     <i:InvokeCommandAction Command="{Binding FnBNoteChangeCommand, Mode=OneWay}"/>
      </i:EventTrigger>
     </i:Interaction.Triggers>
     </telerik:RadRichTextBox>

I'm not sure how does the http:// append into the URL where i upload a physical path. Now i need to get rid of the http:// .

Someone help me with this.

I am afraid this is a known issue with RadInsertHyperlinkDialog . When the URL doesn't match a regular expression, an "http://" is added to the string.

As suggested by the official Telerik support, you could create a custom dialog to work around this behaviour. Please refer to the following link for more information: http://www.telerik.com/forums/radrichtextbox-hyperlink-dialog-issue

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM