File

projects/congarevenuecloud/elements/src/lib/input-select/input-select.component.ts

Deprecated

This component is deprecated. Please use apt-input-field component, to get the picklist/multipicklist working. Input select component is used to create a single or multi select input. This input uses the angular ng-select third party component to create the picklists.

Preview

Usage

Usage

```typescript import { InputSelectModule } from '@congarevenuecloud/elements';

Description

Please use apt-input-field component, to get the picklist/multipicklist working.

Input select component is used to create a single or multi select input. This input uses the angular ng-select third party component to create the picklists.

Preview

Usage

Usage

Example :
import { InputSelectModule } from '@congarevenuecloud/elements';

@NgModule({
imports: [InputSelectModule, ...]
})
export class AppModule {}
Example :
```typescript
<apt-input-select
             [picklistType]="picklist"
             [values]="picklistValues"
             (onChange)="handleChange($event)"
></apt-input-select>
Example :

Metadata

<ng-select
  [multiple]="picklistType === 'multipicklist'"
  [items]="values"
  [(ngModel)]="modelValue"
  [placeholder]="placeholder"
  (change)="onChange.emit(modelValue)"
></ng-select>

./input-select.component.scss

Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""