Dynamicform Builder
Ontimize Web Dynamicform builder
Ontimize Web Dynamicform Builder is a web form builder using the Ontimize Web Dynamic Form.
Github
Ontimize Web Dynamic Form Builder 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-builder --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-builder/styles.scss",
....
],
...
Import in an application module
Include the dynamic form builder module into your app in the module where you want to use it.
...
import { DynamicFormBuilderModule } from 'ontimize-web-ngx-dynamicform-builder';
...
@NgModule({
imports: [
DynamicFormBuilderModule,
/* other imports */
],
declarations: ...
providers: ...
})
export class ExampleModule { }