From 855e08b16676a9b3b44d6bf5d083a5ed0ccb76fb Mon Sep 17 00:00:00 2001 From: "PROGRESS\\doyordan" Date: Fri, 27 Aug 2021 18:26:39 +0300 Subject: [PATCH] fix images add link to kb --- .../working-with-images/richtexteditor-images-overview.md | 6 +++--- .../working-with-images/richtexteditor-insert-images.md | 8 ++++---- controls/tabview/tabview-item.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/controls/richtexteditor/working-with-images/richtexteditor-images-overview.md b/controls/richtexteditor/working-with-images/richtexteditor-images-overview.md index 3a3bc3d1..814f7d64 100644 --- a/controls/richtexteditor/working-with-images/richtexteditor-images-overview.md +++ b/controls/richtexteditor/working-with-images/richtexteditor-images-overview.md @@ -11,8 +11,8 @@ slug: richtexteditor-images-overview From R3 2021 release the RichTextEditor control allows you to add(insert), cut, copy, paste, resize and delete images using built-in toolbar items. -![RichTextEditor AddImage](..images/add-image-toolbar-item.png) -![RichTextEditor AddImage](..images/rte-edit-image-toolbar-items.png) +![RichTextEditor AddImage](../images/add-image-toolbar-item.png) +![RichTextEditor AddImage](../images/rte-edit-image-toolbar-items.png) * `AddImageToolbarItem`(*RichTextEditorToolbarItem*): allows you to add images * `EditImageToolbarItem`(*InsertImageToolbarItem*): allows you to resize the image. In addition the toolbar allows you to pick an image if you haven't selected one. @@ -49,7 +49,7 @@ Load HTML file -![RichTextEditor Insert Images](..images/rte-insert-images.png) +![RichTextEditor Insert Images](../images/rte-insert-images.png) The demo uses the Xam.Plugin.Media nuget package for all projects - .NET Standard, Android, iOS, UWP. In addition for Android Plugin.Permissions NuGet package is installed. diff --git a/controls/richtexteditor/working-with-images/richtexteditor-insert-images.md b/controls/richtexteditor/working-with-images/richtexteditor-insert-images.md index 65d95e07..df7a70a4 100644 --- a/controls/richtexteditor/working-with-images/richtexteditor-insert-images.md +++ b/controls/richtexteditor/working-with-images/richtexteditor-insert-images.md @@ -16,7 +16,7 @@ In this article we will review the built-in toolbar items for imsert and edit im Default look of the `AddImageToolbarItem`: -![RichTextEditor AddImage](images/add-image-toolbar-item.png) +![RichTextEditor AddImage](../images/add-image-toolbar-item.png) ## Built-in Toolbar Items for editing images @@ -30,7 +30,7 @@ The following Built-in Toolbar itema are displayed in the RichTextEditorToolbar How the editing toolbar looks when image is selected: -![RichTextEditor AddImage](..images/rte-edit-image-toolbar-items.png) +![RichTextEditor AddImage](../images/rte-edit-image-toolbar-items.png) ## Edit Image ToolbarItem @@ -48,7 +48,7 @@ EditImageToolbarItem allows you to resize the image and pick an image. When tapp * **PopupOutsideBackgroundColor**(*Color*): Defines the backgrounf color applied outside of the popup content. * **PopupContentTemplate**(*ControlTemplate*): Defines the control template of the popup. -![RichTextEditor AddImage](..images/edit-image-popup.png) +![RichTextEditor AddImage](../images/edit-image-popup.png) >Insert Images example can be found inside the **SDK Browser App - RichTextEditor/Features folder** @@ -56,7 +56,7 @@ EditImageToolbarItem allows you to resize the image and pick an image. When tapp * **ImagePickerToolbarItem**(*Telerik.XamarinForms.RichTextEditor.PickerToolbarItem*): Allows you to pick an image from a collection of pre-defined images. -![RichTextEditor ImagePicker Toolbar](..images/imagepicker-toolbar-item.png) +![RichTextEditor ImagePicker Toolbar](../images/imagepicker-toolbar-item.png) ### Example diff --git a/controls/tabview/tabview-item.md b/controls/tabview/tabview-item.md index 9688ae2b..5c36ca7e 100644 --- a/controls/tabview/tabview-item.md +++ b/controls/tabview/tabview-item.md @@ -19,7 +19,7 @@ position: 3 * **IsEnabled**(*bool*): Defines whether the TabView Item is enabled/disabled. By default `IsEnabled` is `True`. * **IsVisible**(*bool*): Specified whether the TabView Item is visible/hidden. ->important If you want to hide the current Selected TabView Item (setting `IsVisible="False"`), and the RadTabView `IsContentPreserved` property is set to `True`, you have to programatically select the next available item(that is **visible** and **enabled**) and then hide the previously selected item. +>important If you want to hide the current Selected TabView Item (setting `IsVisible="False"`), and the RadTabView `IsContentPreserved` property is set to `True`, you have to programatically select the next available item(that is **visible** and **enabled**) and then hide the previously selected item. For more details visit the [Toggle TabView SelectedItem Visibility]({%slug tabview-hide-current-selected-item-iscontentpreserved-true%}) how-to article. >important ToggleSelectedItemVisibility example can be found in the SDKBrowserApp/Examples/TabViewControl/FeaturesCategory