kelp404 / angular-form-builder

Drag and drop to build bootstrap forms in AngularJS.
http://kelp404.github.io/angular-form-builder/
MIT License
599 stars 340 forks source link

How to Clear the form controls when i move to another page ? #104

Open santosh-k1 opened 7 years ago

santosh-k1 commented 7 years ago

Hi,

I am not able to clear the dragged from when i move to another page.. when i return to the same page all control is display as earlier.. so can you tell me How to Clear the form controls when i move to another page?

Thanks

kamleshpawar2006 commented 7 years ago

Hello Santosh,

I had the same issue. i fixed it by defining the form page state as follows,

.state('createForm', { url: 'createForm', ... onExit: function($builder) { $builder.forms.default = []; }, templateUrl: 'path/to/page' }

Hope this helps you