Skip to content

Commit 7ee343d

Browse files
dimodidimodi
authored andcommitted
polishing
1 parent 4dcd9e3 commit 7ee343d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

knowledge-base/dropdown-disabled-items.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The following algorithm applies to the Telerik Blazor ComboBox, DropDownList, an
4141

4242
### ComboBox
4343

44-
Reset the ComboBox value to default and then `Rebind()` the component after overriding the user selection.
44+
Reset the ComboBox value to default and then [`Rebind()`](slug:common-features-data-binding-overview#refresh-data) the component after overriding the user selection.
4545

4646
>caption Use disabled unselectable items in a ComboBox
4747
@@ -136,6 +136,8 @@ Reset the ComboBox value to default and then `Rebind()` the component after over
136136

137137
### DropDownList
138138

139+
Unlike the ComboBox, the DropDownList does not need value resetting and `Rebind()` when overriding the user selection.
140+
139141
>caption Use disabled unselectable items in a DropDownList
140142
141143
````RAZOR
@@ -222,6 +224,10 @@ Reset the ComboBox value to default and then `Rebind()` the component after over
222224

223225
### MultiSelect
224226

227+
The MultiSelect implementation is simpler, because there is no need to deliberately skip items during keyboard navigation with the arrow keys.
228+
229+
>caption Use disabled unselectable items in a MultiSelect
230+
225231
````RAZOR
226232
<TelerikMultiSelect Data="@Products"
227233
Value="@MultiSelectValues"

0 commit comments

Comments
 (0)