I am rendering a view dynamically. eg :
username --> type : text input
password --> type : text password
company --> type : text : input
keep me logged in --> type : boolean checkbox
Each text-box, radio-button, checkbox and any input-element render from directive that have isolated scope.
Now there is a button called Sign In on click of the button there is some rule that tell me read all value and call api.
The challenge is when I click on button SIGN IN how can I read value of username, password, company and keep me logged in check box. Because I don't have scope variable set. I don't even know how many input-elements are there.
Any help would be a great supprt