Ontimize Web Dynamicform is a web dynamic form based on the new 2.x version of Angular using components from Ontimize Web framework.
Ontimize Web Dynamic Form module is stored in github where you can also see/add todos, bugs or feature requests in the issues section.
npm install ontimize-web-ngx-dynamicform --saveYou must add the module styles definition in your '.angular-cli.json' file styles array:
...
"styles": [
...
"../node_modules/ontimize-web-ngx-dynamicform/styles.scss",
....
],
...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 { }Run live demo here.