@danielhokanson/ng-dynamic-forms-ui-ngx-bootstrap
TypeScript icon, indicating that this package has built-in type declarations

19.0.3 • Public • Published

NG Dynamic Forms ngx-bootstrap UI

Installation

npm i @danielhokanson/ng-dynamic-forms-ui-ngx-bootstrap -S

Import

@NgModule({

    imports: [DynamicFormsNGxBootstrapUIModule]
})

export class AppModule {}

Usage

with DynamicNGxBootstrapFormComponent:

<form [formGroup]="myFormGroup">

    <dynamic-ngx-bootstrap-form [group]="myFormGroup"
                                [model]="myFormModel"></dynamic-ngx-bootstrap-form>
</form>

with DynamicNGxBootstrapFormControlComponent:

<form [formGroup]="myFormGroup">

    <dynamic-ngx-bootstrap-form-control *ngFor="let controlModel of myFormModel"
                                        [group]="myFormGroup"
                                        [model]="controlModel"></dynamic-ngx-bootstrap-form-control>
</form>

Form Controls

Control Model Required Property
Checkbox DynamicCheckboxModel
Checkbox Group DynamicCheckboxGroupModel
Datepicker DynamicDatePickerModel
Input DynamicInputModel
Radio Group DynamicRadioGroupModel
Rating DynamicRatingModel
Select DynamicSelectModel
TextArea DynamicTextAreaModel
Timepicker DynamicTimePickerModel

Resources

Package Sidebar

Install

npm i @danielhokanson/ng-dynamic-forms-ui-ngx-bootstrap

Version

19.0.3

License

ISC

Unpacked Size

183 kB

Total Files

18

Last publish

Collaborators

  • danielhokanson