]
Alexey Kazakov updated JBIDE-18960:
-----------------------------------
Comment: was deleted
(was: !datalistca.png!)
Content assist for value of attribute list of html5 tag input
-------------------------------------------------------------
Key: JBIDE-18960
URL:
https://issues.jboss.org/browse/JBIDE-18960
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: jsp/jsf/xml/html source editing
Affects Versions: 4.3.0.Alpha1
Reporter: Viacheslav Kabanovich
Assignee: Viacheslav Kabanovich
Labels: new_and_noteworthy
Fix For: 4.3.0.Alpha1
List attribute refers to a <datalist> element that contains pre-defined options for
an <input> element
1. Create an html file
2. Add the following code:
{code:html}
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Safari">
</datalist>
<datalist id="os">
<option value="Windows">
<option value="Linux">
<option value="Mac">
</datalist>
<input list="" name="browser">
{code}
3. Ctrl+Space for <input list="|"> should propose "os" and
"browsers":