Skip to content

Update combo topic features topic to 19 #1577

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: vnext
Choose a base branch
from
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
15 changes: 6 additions & 9 deletions doc/en/components/inputs/combo/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The following demo shows some `ComboBox` features that are enabled/disabled at r



In our sample we are going to use the `Switch` component, so we have to register it together with the combo:
In our sample we are going to use the `Switch` component, so we have to import them together with the combo:

<!-- WebComponents -->
```ts
Expand Down Expand Up @@ -48,9 +48,6 @@ You will also need to link an additional CSS file to apply the styling to the `S
```tsx
import { IgrComboModule, IgrCombo, IgrSwitchModule, IgrSwitch } from 'igniteui-react';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the module imports

import 'igniteui-webcomponents/themes/light/bootstrap.css';

IgrComboModule.register();
IgrSwitchModule.register();
```

<!-- end: React -->
Expand Down Expand Up @@ -179,7 +176,7 @@ Filtering options can be further enhanced by enabling the search case sensitivit
```

```tsx
<IgrCombo disableFiltering="true" caseSensitiveIcon="true"></IgrCombo>
<IgrCombo disableFiltering={true} caseSensitiveIcon={true}></IgrCombo>
```

#### Filtering Options
Expand Down Expand Up @@ -290,7 +287,7 @@ If you want your ComboBox to be automatically focused on page load you can use t
```

```tsx
<IgrCombo autofocus="true" />
<IgrCombo autofocus={true} />
```

### Search Input Focus
Expand All @@ -306,7 +303,7 @@ The ComboBox search input is focused by default. To disable this feature and mov
```

```tsx
<IgrCombo autofocusList="true" />
<IgrCombo autofocusList={true} />
```

### Required
Expand All @@ -322,7 +319,7 @@ The ComboBox can be marked as required by setting the required property.
```

```tsx
<IgrCombo required="true" />
<IgrCombo required={true} />
```

### Disable ComboBox
Expand All @@ -338,7 +335,7 @@ You can disable the ComboBox using the `Disabled` property:
```

```tsx
<IgrCombo disabled="true" />
<IgrCombo disabled={true} />
```

<!-- WebComponents -->
Expand Down