After searching forum topics for related posts, I still feel i need to start a new topic, especially with HTML5 existing now.
I'm working on creating my first couple apps with Creator. Prior to that i just have a couple prototype forms custom made via the Sites app.
Since discovering how cool autocomplete within input fields via <datalist> (I use Google Chrome), I just have to have an autocomplete feature for some single line input fields.
It definitely seems like I would rather go the route of having a list built somewhere that is referred to, since there are a lot of product names I intend to use. (Rather than manually adding/updating something like the code below)
- <form>
- <input type="text" list="languages">
- <datalist id="languages">
- <option value="Product 1">
- <option value="Product 2">
- etc....
- </datalist>
- </form>
I've played a little with deluge mode to make a form "sendmail", but beyond that, most of the functions are not quite straight forward to me. Could someone point me in the right direction to successfully apply this autocomplete feature as a beginner to Creator app, but understands basic HTML / use of expressions?