ontimize-web-ngx-dynamicform
v4.0.0
Published
Dynamic form
Downloads
15
Readme
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.