Handling Complex Object with angular-formly
angular-formly angular-formly is an AngularJS module which has a directive to help customize and render JavaScript/JSON configured forms. The formly-form directive and the formlyConfig service are very powerful and bring unmatched maintainability to your application's forms. For more information visit its GitHub page . Now when you use formly, it actually provide very basic framework for generating forms. But it provide a great extensibility as well. So, here I am going to use that extensibility. Scenario In many practical scenarios, objects are complex, i.e. they have properties which are not of basic type, but are objects itself. For example consider the following JSON object { "address": { "street": "", "city": "", "state": "" }, "name": "" } The name is of simple type, but address is itself an another object. Now issue is with formly we can easily g...