[
https://issues.jboss.org/browse/JBIDE-16347?page=com.atlassian.jira.plugi...
]
Michelle Murray updated JBIDE-16347:
------------------------------------
Affects: Documentation (Ref Guide, User Guide, etc.)
New Tabs wizard for JQM 1.4
---------------------------
Key: JBIDE-16347
URL:
https://issues.jboss.org/browse/JBIDE-16347
Project: Tools (JBoss Tools)
Issue Type: Sub-task
Components: jsp/jsf/xml/html source editing
Reporter: Viacheslav Kabanovich
Assignee: Viacheslav Kabanovich
Labels: new_and_noteworthy
Fix For: 4.2.0.Alpha2
Tabs widget can be implemented as navbar
{code}
<div data-role="tabs" id="tabs">
<div data-role="navbar">
<ul>
<li><a href="#one"
data-ajax="false">one</a></li>
<li><a href="#two"
data-ajax="false">two</a></li>
</ul>
</div>
<div id="one" class="ui-body-d ui-content">
</div>
<div id="two">
</div>
</div>
{code}
or as listview
{code}
<div data-role="tabs">
<ul data-role="listview" data-inset="true"
class="tablist-left">
<li><a href="#one"
data-ajax="false">one</a></li>
<li><a href="#two"
data-ajax="false">two</a></li>
<li><a href="ajax-content.html"
data-ajax="false">three</a></li>
</ul>
<div id="one" class="ui-body-d tablist-content">
</div>
<div id="two" class="ui-body-d tablist-content">
</div>
</div>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira