Is it possible using Rails 4 and simple_form to start creating a new object, finish typing the first field in the form (let's assume autocompletion is set up and the user picks a pre-existing option), and then hits enter -> now based on that I want the rest of the form to autocomplete since the info is already in the database... i.e. I don't want to have multiple users filling out the whole form for the same thing over and over.
Is there a way to autocomplete an entire FORM (not just a single field) based on the results entered in one field? We can assume that when the user focuses out of the field in question, the other fields perhaps perform an AJAX call to retrieve the rest of the info...