
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
angular-formly
Advanced tools
AngularJS directive which takes JSON representing a form and renders to HTML
Formly for Angular is an AngularJS module which has directives to help customize and render JSON based forms. The directive originated from a need to allow our users to create surveys and distribute them easily. Currently we've can render the form data from JSON and assign a model to form so we can receive the submitted data.
<formly-form model="formData" fields="formFields"></formly-form>
There were some significant changes that you'll want to be aware of. In order to upgrade and get all the cool features, you're going to need to change your field configurations. Here is a tool that should help make that process easier. Also, if you are not able to update the configuration very easily, see this issue for ideas on how to ease things a little.
Required to use Formly:
Angular
Dev dependencies to build Formly
npm
Install with Bower or npm
$ bower install angular-formly --save
or
$ npm install angular-formly --save
Include the javascript file in your index.html, Formly without any form templates. You can create your own or use some of our prebuilt templates which cover basic form types, then extend with your own as needed.
<script src="bower_components/angular-formly/dist/formly.min.js"></script>
and
angular.module('yourModule', ['formly']);
or
angular.module('yourModule', [require('angular-formly')]);
While it is recommended to create your own templates for ultimate customization and flexibility, there are prebuilt templates you can use:
Regardless of which flavor you use (or if you use no flavor at all), you can create your own templates with formlyConfigProvider
.
This is the recommended approach if you want to customize your templates at all.
Note: This README.md
is for the latest version of formly
. There have been some changes in the latest version which is not stable. For documentation on the latest stable version, see the 1.0.0 documentation
Here's an example using the vanilla template properties
You can add a formly-form in your HTML templates as shown below.
<formly-form model="formData" fields="formFields">
<button ng-click="onSubmit()">Hello World</button>
</formly-form>
Example data as it would be set in the controller
$scope.formData = {};
$scope.formFields = [
{
//the key to be used in the model values {... "username": "johndoe" ... }
key: 'username',
type: 'text',
label: 'Username',
placeholder: 'johndoe',
required: true,
disabled: false, //default: false
description: 'Descriptive text'
},
{
key: 'password',
type: 'password',
label: 'Password',
required: true,
disabled: false, //default: false
expressionProperties: {
hide: '!model.username' // hide when username is blank
}
}
];
$scope.onSubmit = function() {
console.log('form submitted:', $scope.formData);
};
When constructing fields use the options below to customize each field object. You must set at least a type
, template
, or templateUrl
.
type
is the type of field to be rendered. Either type, template, or templateUrl must be set.
null
depends on the template set you're using. See documentation for the specific fieldset you are using.
template
can be set instead oftype
ortemplateUrl
to use a custom html template form field. Should be used with one-liners mostly (like a directive). Useful for adding functionality to fields.
Note: This can be used to add HTML instead of a form field.
Examples:
template: '<p>Some text here</p>'
template: '<hr />'
undefined
templateUrl
can be set instead oftype
ortemplate
to use a custom html template form field. Set a path relative to the root of the application. iedirectives/custom-field.html
undefined
By default form models are keyed by location in the form array, you can override this by specifying a
key
.
undefined
Whether to hide the field (uses
ng-if
)
undefined
By default, the
model
passed to theformly-field
directive is the same as themodel
passed to theformly-form
. However, if the field has amodel
specified, then the specifiedmodel
is used for that field (and that field only). Also, a deep watch is added to theformly-field
directive's scope to run theexpressionProperties
when the specifiedmodel
changes.
undefined
expressionProperties
is an object where the key is a property to be set on the main field config (can be an angular expression) and the value is an expression used to assign that property. The expression can be a function or string expression and will be evaluated usingformlyEval
fromformlyUtils
see below for more information. The returned value is wrapped in$q.when
so you can return a promise from your function :-)
For example:
vm.fields = [
{
key: 'myThing',
type: 'someType',
expressionProperties: {
'templateOptions.label': '$viewValue', // this would make the label change to what the user has typed
'data.someproperty.somethingdeeper.whateveryouwant': 'model.myThing.length > 5' // this would set that property on data to be whether or not the model's myThing value has a length greater than 5
}
}
];
undefined
data
is reserved for the developer. You have our guarantee to be able to use this and not worry about future versions of formly overriding your usage and preventing you from upgrading :-)
undefined
templateOptions
is reserved for the templates. Any template-specific options go in here. Look at your specific template implementation to know the options required for this.
undefined
wrapper
makes reference tosetWrapper
in the formlyConfigProvider. It is expected to be the name of the wrapper specified there. The formly field will be wrapped by the first wrapper, then the second, then the third, etc.
undefined
ngModelAttrs
is used in an angular-formly created templateManipulator to automatically add attributes to the ng-model element of field templates. There are two properties:bound
andunbound
. In both cases, the key is the attribute to add to theng-model
element. In theunbound
case, the value will be evaluated on the field's scope, and assigned to the attribute (not bound). In thebound
case, the property will be assigned as the value (for example: the value'ng-pattern': /abc/
would result in:ng-pattern="options.ngModelAttrs['ng-pattern']"
which, ultimately, would result inng-pattern="/abc/"
where/abc/
is bound to the value ofoptions.ngModelAttrs['ng-pattern']
and therefore, can be changed viaexpressionProperties
.
undefined
controller
is a great way to add custom behavior to a specific field. You can also set the controller to a type as well. It is injectable with the $scope of the field, and anything else you have in your injector.
undefined
link
allows you to specify a link function. It is invoked after your template has finished compiling. You are passed the normal arguments for a normal link function.
undefined
optionsTypes
allows you to specify extra types to get options from. Duplicate options are overridden in later priority (index1
will override index0
properties). Also, these are applied after thetype
'sdefaultOptions
and hence will override any duplicates of those properties as well.
undefined
modelOptions
allows you to take advantage ofng-model-options
directive. Formly's built-in templateManipulator (see below) will add this attribute to yourng-model
element automatically if this property exists. Note, if you use thegetter/setter
option, formly's templateManipulator will change the value ofng-model
tooptions.value
which is a getterSetter that formly adds to field options. For more information on ng-model-options, see these egghead lessons.
{ getterSetter: true, allowInvalid: true }
watcher
is an object which has at least two properties calledexpression
andlistener
. Thewatch.expression
is added to theformly-form
directive's scope. If it's a function, it will be wrapped and called with the field as the first argument, followed by the normal arguments for a watcher, followed the watcher'sstop
function. If it's not defined, it will default to the value of the field. Thelistener
will also be wrapped and called with the field as the first argument, followed by the normal arguments for a watch listener. You can also specify a type ($watchCollection
or$watchGroup
) via thetype
property (defaults to$watch
) and whether you want it to be a deep watch via thedeep
property (defaults tofalse
).
How the api differs from a normal $watch
:
// normal watcher
$scope.$watch(function expression(theScope) {}, function listener(newValue, oldValue, theScope) {});
// field watcher
$scope.$watch(function expression(field, theScope, stop) {}, function listener(field, newValue, oldValue, theScope, stop) {});
undefined
validators
is an object where the keys are the name of the validity (to be passed to$setValidity
) and the values are functions or expressions which returns true if it is valid. Templates can pass this option to theformly-custom-validation
directive which will add a parser (or validator, see note) to thengModel
controller of the field. The validator can be a function or string expression and will be evaluated usingformlyEval
fromformlyUtils
see below for more information.
Note: Formly will utilize the
$validators
pipeline (introduced in angular 1.3) if available, otherwise it will fallback to$parsers
. If you are using angular 1.3, formly will automatically use the$asyncValidators
pipeline if your validator is a function (and wrap it in$q.when
so you don't need to worry about returning a promise if that doesn't make sense for your validator). Note, in this case, all the normal $asyncValidators rules apply. To fail the validation, reject the promise. Also, note the performance implications when you mix sync and non-sync validators: https://github.com/angular/angular.js/issues/10955 (not a problem if your validators are not actually costing resources, or if you make the sync validators strings instead of functions).
NOTE 2: You can alternatively specify a validator as an object with an
expression
and amessage
. This will unify how templates reference messages for when the validator has failed. Also, this should be used only for one-off messages (useng-messages-include
for generic messages).message
in this case should be an expression that is evaluated in exactly the same way a validator is evaluated. Theformly-custom-validation
directive will then add an object to the field options calledvalidationMessages
which is a map of functions where the key is the validation name and the value is a to function which returns the evaluated message.
undefined
The resulting form element has the class formly
and each field has the class formly-field
.
Formly uses angular's built-in validation mechanisms. See the angular docs for more information on this. (Note, if you're using Angular 1.3, formly utilizies the new $validators
and $asyncValidators
pipelines, otherwise, it falls back to good old $parsers
. Either way, your API is the same, though you can't do asynchornous validation with 1.2.x).
The form controller is bound to what you specify as the form
attribute on the formly-form
directive. Make sure to specify a name on any ng-model
in your custom templates to ensure that the formControl
is added to the options
. If you're using Angular 1.3, the name
attribute is interpolateable (you can use {{id}}
). If you are stuck on 1.2.x, you can use the formly-dynamic-name
directive where the value is an expression which would return the name (so, formly-dynamic-name="id"
). Formly will add a formControl
property to the field, and you can reference that in your template with options.formControl
to get access to properties like $invalid
or $error
. See the bootstrap templates for an example.
You can also specify custom validation in your JSON. See the field called validators
for more information on this. If you wish to leverage this in a custom template, use the formly-custom-validation
directive and pass options.validators
to it.
This the the main directive you'll use throughout your code. A word of advice, create your own directive that wraps this one. This will make any upgrades easier if the api changes at all. If you want an example of how to do this, file an issue and I'll demonstrate :-D
The attributes allowed on the directive are as follows:
The model to be represented by the form.
The field configurations for building the form
The variable to bind the NgFormController
to.
You will not likely use this often. It requires no value, but its presence will change the formly-form
directive from
being replace with an ng-form
to being a div
. If you choose this option, make sure to wrap it in your own ng-form
or form
and provide that with a name
. Then pass that name
to the form
attribute so all the formControls
of the
fields will have somewhere to be added to.
You will not likely need to use this directive, but if you do just know that unless you're using it inside formly-form
you're fields are not going to get all the treatment (like watchers
for example).
The field config. Must have a type
OR template
OR templateUrl
. Everything else is optional, but it is limited to
the options mentioned above. Any extra options will result in an error.
The model for the field to represent
The id of the form, used to generate the id for the field which is used in the name
(for the formControl
) and the id
of the field (useful for a label
's for
attribute)
The index of the field, used if key
is not defined on the field.
The other fields. As convenience if needed.
The NgFormController
that will be used to get and set the formControl
for the field.
This is an attribute directive. The given value should be a validators
object.
This is an attribute directive. It will watch the given value and focus the element when the given value is truthy. You
can also optionally add a refocus
attribute and this will cause focus to be returned to the previous element with
focus when the formly-focus
value is set to falsey (unless the user has clicked away from the focused element).
You can configure formly to use custom templates for specified types (your own "text" template) by injecting the formlyConfigProvider
in your app's config
function. The formlyConfigProvider
has the following functions:
Allows you to specify a custom type
// object api (single type with a template)
formlyConfig.setType({
name: 'input',
template: '<input ng-model="[options.key]" />'
});
// with a templateUrl
formlyConfig.setType({
name: 'checkbox',
templateUrl: 'custom-formly-fields-checkbox.html'
});
// array api (multiple types)hi
formlyConfig.setType([
{
name: 'radio',
templateUrl: 'custom-formly-fields-radio.html'
},
{
name: 'button',
templateUrl: '<button ng-click="options.templateOptions">{{options.label</button>'
}
]);
// also, you can specify wrappers for a type
formlyConfig.setType({
name: 'select',
templateUrl: 'custom-formly-fields-select.html',
wrapper: ['inner', 'outer', 'evenOuterOuter']
});
// you can also set default options for fields of this type. This can be done with or without a template or templateUrl
// useful when combined with the field's `optionsTypes` property.
formlyConfig.setType({
name: 'phone',
defaultOptions: {
ngModelAttrs: {
bound: {
'ng-pattern': /^1[2-9]\d{2}[2-9]\d{6}$/
}
}
}
});
// you also have the option to specify a controller and a link function
formlyConfig.setType({
name: 'uploadButton',
controller: function($scope, $upload) {
$scope.onUploadClicked = function(file) {
return $upload.start(file); // whatever...
}
},
link: function(scope, el) {
el.addClass('manipulate-the-dom');
}
});
Allows you to set a template for your formly templates. You can have a default (used by all templates), named template wrappers, and typed template wrappers (used by fields with the specified type). All template wrappers must follow these rules
<formly-transclude></formly-transclude>
in them to specify where the field template should be placed.templateUrl
or template
For example:
// simple argument api
formlyConfigProvider.setWrapper('<div>This is the default because <formly-transclude></formly-transclude> there is no name specified</div>');
formlyConfigProvider.setWrapper('<div>This is not the default because <formly-transclude></formly-transclude> there is a name specified</div>', 'theName');
// object api
formlyConfigProvider.setWrapper({
name: 'inputWrapper', // optional. Defaults to name || types.join(' ') || 'default'
template: 'the template with <formly-transclude></formly-transclude> in it', // must have this OR templateUrl
templateUrl: 'path/to/template.html', // the resulting template MUST have <formly-transclude></formly-transclude> in it and must have templateUrl OR template (not both)
types: 'stringOrArray' // this can be a string or an array of strings that map to types specified by setTemplate and setTemplateUrl
});
// array api
formlyConfigProvider.setWrapper([
{ /* same configuration as the object api */ },
{ /* same configuration as the object api */ },
{ /* same configuration as the object api */ },
{ /* same configuration as the object api */ }
]);
removeWrapperByName
and removeWrappersForType
are helpful if you're using a template library but want to customize your own wrappers. The api is simple:
formlyConfigProvider.removeWrapperByName('inputWrapper'); // removes the wrapper that's called 'inputWrapper'
formlyConfigProvider.removeWrappersForType('select'); // removes all wrappers that apply to the type of 'select'
Also, note, that if you want to remove the default wrapper, this is done by passing 'default'
to the removeWrapperByName
function.
Another note, you can instead override wrappers (and types as well) without a warning if you specify an overwriteOk: true
property.
See the website for examples on usage
This allows you to manipulate the template of a specific field. This gives you a great deal of power without sacrificing performance by having bindings which you will never need as well as save repetition in your templates. The api to this feature is as follows:
// note, most of the formlyConfigProvider functions can
// actually be done in the `run` function as well using `formlyConfig`.
formlyConfigProvider.templateManipulators.preWrapper.push(function(template, options, scope) {
// determine if you wish to do anything with this template,
// manipulated as needed, and return either the old template,
// the new template, or a promise that will resolve with the
// new template... for example
if (options.data.addWarningMessage) {
return template + '<div>This is a warning message!!!</div>';
} else {
return template;
}
});
// or, if you wanted to load a template, you would do it in the
// run function so you can get $http, and $templateCache, then do:
formlyConfig.templateManipulators.preWrapper.push(function(template, options, scope) {
return $http.get('the/template.html', {cache: $templateCache}).then(function(response) {
return response.data.replace('where-the-template-goes', template);
});
});
Note! There is a built-in templateManipulator
that automatically adds attributes to the ng-model
element(s) of your templates for you. Here are the things you need to know about it:
data: {noTouchy: true}
and this template manipulator will skip yoursng-model
.bound
and unbound
ngModelAttrs
specified for the field (read more about that above)name
and id
attribute (the scope.id
for both of them)formly-custom-validation
directive if the field has options.validators
ng-model-options
directive if the field has options.modelOptions
ng-
attributes (like ng-maxlength
, ng-required
, etc) if the corresponding value is present on templateOptions
or referenced in expressionProperties
. You can specify additional bound attributes with the data.ngModelBoundAttributes
propertyng-
attributes expressions (like ng-click
, ng-blur
, ng-keypress
, etc) if the corresponding value is present on templateOptions
(prefixed with on
). If it is a function, it will be invoked like so: options.templateOptions.onClick(value, options, scope, $event)
. Otherwise, it will be evaluated using $scope.$eval
(so it can be a normal expression you would put in the attribute yourself). You can specify additional invoked attributes with the data.ngModelInvokedAttributes
property.templateOptions
or referenced in expressionProperties
. These will added like so: {{options.templateOptions.placeholder}}
so they will be bound. You can specify additional expression attributes with the data.ngModelAttributes
propertyThis is incredibly powerful because it makes the templates require much less bloat AND it allows you to avoid paying the cost of watchers that you'd never use (like a field that will never be required for example).
Formly gives some useful warnings when you attempt to use a template that doesn't exist or there's a problem loading a template. You can disable these warnings via formlyConfigProvider.disableWarnings = true
Please see the Wiki for tips and tricks from the community.
There are four places where you can put expressions. The context in which these expressions are evaluated is important. There are two different types of context and each is explained below:
watcher - expression and listener can be functions or expression strings. This is a regular angular $watch
(depending on the specified type
) function and it is created on the formly-form
scope, despite being applied to a specific field. This allows the expressions to run even if the field's scope has been destroyed (via an ng-if like when the field is hidden). The function signature differs from a normal $watch
however. See above for more details.
expressionProperties & validators - these expressions can be functions or expression strings. If it's a function,
it's invoked with the arguments $viewValue
, $modelValue
, and scope
. The scope in this case, is the field's scope.
If it's an expression string, it is evaluated using $scope.$eval
with a locals object that has $viewValue
and
$modelValue
(however, in the case of expressionProperties
, $viewValue
will simply be the $modelValue
because
they don't have a hook into the ngModelController
but we want to keep the api consistent).
You have a lot of freedom when it comes to writing templates. You don't even need to use the model
which means that you can have fields that are just part of the look and feel of your form. Formly also provides you with the following directives to help you in your templates:
name="{{::id}}"
)Please see the CONTRIBUTING Guidelines.
A special thanks to Nimbly for creating/sponsoring Angular-Formly's development. Thanks to Kent C. Dodds for his continued support on the project.
FAQs
AngularJS directive which takes JSON representing a form and renders to HTML
The npm package angular-formly receives a total of 2,699 weekly downloads. As such, angular-formly popularity was classified as popular.
We found that angular-formly demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.