Skip to content

Commit 2fc701b

Browse files
chore(dropdownlist): fix incorrect information (#2465)
The DropDownList no longer uses a `<select>` element in its rendering. Co-authored-by: Nadezhda Tacheva <[email protected]>
1 parent 8c15086 commit 2fc701b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dropdownlist/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The Blazor DropDownList @[template](/_contentTemplates/dropdowns/features.md#gro
9393
| `FilterDebounceDelay` | `int` <br/> 150 | Time in milliseconds between the last typed symbol and the filter input value update. Applicable to filtering only. Use it to balance between client-side performance and number of database queries. |
9494
| `FilterOperator` | `StringFilterOperator` <br /> (`StartsWith`)| The method of [filtering]({%slug components/dropdownlist/filter%}) the items. |
9595
| `FilterPlaceholder` | `string` | The hint that will be displayed in the filter input when it has no value.
96-
| `Id` | `string` | The `id` attribute on the `<select />` element, so you can attach a `<label for="">` to it. |
96+
| `Id` | `string` | The `id` attribute rendered on the main wrapping element of the component (`<span class="k-dropdownlist">`). You can use it to attach a `<label for="">` to it. |
9797
| `TItem` | `Type`| The type of the model to which the component is bound. Required if you can't provide `Data` or `Value`. Determines the type of the reference object. |
9898
| `TValue` | `Type` | The type of the value field from the model to which the component is bound. Required if you can't provide `Data` or `Value`. Determines the type of the reference object. The type of the values can be:<br /> - `number` (such as `int`, `double`, and so on)<br /> - `string`<br /> - `Guid`<br /> - `Enum` |
9999
| `Title` | `string` | The title text rendered in the header of the dropdown list popup (action sheet). Applicable only when [`AdaptiveMode` is set to `Auto`]({%slug adaptive-rendering%}). |

0 commit comments

Comments
 (0)