Dynamicform

Ontimize Web Dynamicform

Ontimize Web Dynamicform is a web dynamic form implementation.

Github

Ontimize Web Dynamic Form module is stored in github where you can also see/add todos, bugs or feature requests in the issues section.

Installation

  npm install ontimize-web-ngx-dynamicform --save

Usage

Configure angular-cli.json dependencies

You must add the module styles definition in your ‘.angular-cli.json’ file styles array:

...
"styles": [
  ...
  "../node_modules/ontimize-web-ngx-dynamicform/styles.scss",
  ....
],
...

Import in an application module

Include the dynamic form module into your app in the module where you want to use it.

...
import { DynamicFormModule } from 'ontimize-web-ngx-dynamicform';
...

@NgModule({
  imports: [
    DynamicFormModule,
    /* other imports */
  ],
  declarations: ...
  providers: ...
})
export class ExampleModule { }

Updated: