@devxjs/ng-form-builder
v0.0.2
Published
The Angular.js form builder component.
Downloads
2
Readme
The devxjs.com Form Builder
This library provides form building capabilities to an Angular.js application. This form builder's purpose is to construct a JSON object reporesentation of a form, which could then be handed off to a Form Renderer such as the one found @ https://github.com/devxjs/ngForm. The following landing page should provide a good example of how this form builder works.
The form builder can be embedded within your application using the following embed code.
<form-builder form="myform"></form-builder>
Where myform
would be a form object that is placed on the scope of the controller containing the form builder.
Installation
To install this within your application, you will first need to include the following
Adding Components
To add a component, add it in the config phase.
angular
.module('myApp')
.config([
'formioComponentsProvider',
function (formioComponentsProvider) {
formioComponentsProvider.register('myfield', {
title: 'My Field',
template: 'devxjs/components/icons.html',
controller: ['$scope', function($scope) {
}],
group: 'custom',
icon: 'fa fa-heart-o',
settings: {},
views: []
});
Removing Components
To remove default components or groups from the form builder, set them as disabled in the run phase.
angular.module('myApp')
.run(['formioComponents', function(formioComponents) {
formioComponents.components.textfield.disabled = true;
formioComponents.groups.layout.disabled = true;
}]);
devxjs.com
This project is provided by devxjs.com, which is a combined form and API platform for Developers.