ontimize-web-ngx-dynamicform

Dynamic form


Keywords
ontimize, web, dynamic, form
License
Apache-2.0
Install
npm install ontimize-web-ngx-dynamicform@4.0.0

Documentation

Ontimize Web Dynamicform

Ontimize Web Dynamicform is a web dynamic form based on the new 2.x version of Angular using components from Ontimize Web framework.

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 DynamicFormModule 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 { }

Example

Run live demo here.