Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions controls/radcombobox/features/edit-modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ In order to make your __RadComboBox__ editable, you should set its __IsEditable_
<telerik:RadComboBox x:Name="radComboBox" IsEditable="True"/>
```

>tipWhen making your __RadComboBox__ editable, you could better distinguish the benefit of the [AutoComplete]({%slug radcombobox-features-autocomplete%}).
>tip When making your __RadComboBox__ editable, you could better distinguish the benefit of the [AutoComplete]({%slug radcombobox-features-autocomplete%}).

By default, the __RadComboBox__ is non-editable. Which means that its __Input Area__ is hidden.

>tipIf your __RadComboBox__ is non-editable, you could still benefit from the [AutoComplete]({%slug radcombobox-features-autocomplete%}) feature, but instead of autocomplete your items will be auto-selected.
>tip If your __RadComboBox__ is non-editable, you could still benefit from the [AutoComplete]({%slug radcombobox-features-autocomplete%}) feature, but instead of autocomplete your items will be auto-selected.

>When your __RadComboBox__ is editable and has ItemTemplate defined, you should set the [telerik:TextSearch.TextPath]({%slug radcombobox-features-selection%}) property to point to the required property of the bussiness object which will be shown in the input field.

Expand All @@ -42,7 +42,7 @@ __Example 1: Setting the IsEditable and IsReadOnly to True__
<telerik:RadComboBox x:Name="radComboBox" IsEditable="True" IsReadOnly="True"/>
```

>tipSetting the __RadComboBox__'s __IsReadOnly__ property to __True__ will affect the __RadComboBox__ only when it is __editable__.
>tip Setting the __RadComboBox__'s __IsReadOnly__ property to __True__ will affect the __RadComboBox__ only when it is __editable__.

## StaysOpenOnEdit

Expand Down Expand Up @@ -70,3 +70,4 @@ __Example 3: Setting the CanKeyboardNavigationSelectItems to False__

* [Selection]({%slug radcombobox-features-selection%})
* [Filtering]({%slug radcombobox-features-filtering%})