• Haarika Yerubandi
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
So basically, my form is the proxy and I am trying to fetch the values of the form and by looping them I want to throw an error. Here is the proxy as seen from debugger console.User-added image

 
var listForm = component.find("form");
        console.log(listForm);
        
        var i;
        for(i=0; i<listForm.length; i++){
            
            console.log(listForm[i]);
            
        }

 
So basically, my form is the proxy and I am trying to fetch the values of the form and by looping them I want to throw an error. Here is the proxy as seen from debugger console.User-added image

 
var listForm = component.find("form");
        console.log(listForm);
        
        var i;
        for(i=0; i<listForm.length; i++){
            
            console.log(listForm[i]);
            
        }