Details
Description
currently many open jira's for tabset. Will link to this one and deal with them for tablet.
1) use common core rendering
2) proper rendering of bottom orientation and get working for large view
3) correct state regardless of whether contentPanes are client or not.
4) common attributes between jsf and jsp
5) disabled support
1) use common core rendering
2) proper rendering of bottom orientation and get working for large view
3) correct state regardless of whether contentPanes are client or not.
4) common attributes between jsf and jsp
5) disabled support
Issue Links
Activity
Judy Guglielmin
created issue -
Judy Guglielmin
made changes -
Judy Guglielmin
made changes -
Judy Guglielmin
made changes -
Judy Guglielmin
made changes -
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #33525 | Wed Feb 20 13:07:34 MST 2013 | judy.guglielmin | |
Files Changed | ||||
MODIFY
/icemobile/trunk/icemobile/jsf/components/component/resources/org.icefaces.component.tabset/tabset.js
MODIFY /icemobile/trunk/icemobile/jsp/src/main/javascript/icemobile.js MODIFY /icemobile/trunk/icemobile/core/src/main/java/org/icemobile/renderkit/BaseCoreRenderer.java MODIFY /icemobile/trunk/icemobile/core/src/main/java/org/icemobile/renderkit/TabSetCoreRenderer.java |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #33592 | Mon Feb 25 11:17:44 MST 2013 | judy.guglielmin | |
Files Changed | ||||
MODIFY
/icemobile/trunk/icemobile/jsf/components/component/src/org/icefaces/mobi/component/contentpane/ContentPaneRenderer.java
|
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #33682 | Wed Feb 27 17:03:01 MST 2013 | judy.guglielmin | |
Files Changed | ||||
MODIFY
/icemobile/trunk/icemobile/samples/mediacast/src/main/webapp/WEB-INF/includes/views/small.xhtml
MODIFY /icemobile/trunk/icemobile/samples/mediacast/src/main/webapp/WEB-INF/includes/views/large.xhtml MODIFY /icemobile/trunk/icemobile/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/layout/tabset-example.xhtml |
Steve Maryka
made changes -
Assignee | Steve Maryka [ steve.maryka ] | Judy Guglielmin [ judy.guglielmin ] |
Judy Guglielmin
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Fix Version/s | 1.3 Beta [ 10373 ] | |
Resolution | Fixed [ 1 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #34752 | Mon May 06 15:37:44 MDT 2013 | judy.guglielmin | |
Files Changed | ||||
MODIFY
/icemobile/trunk/icemobile/jsf/components/tests/mobitest/src/main/webapp/layout/tabsetBasic/tabSet.xhtml
MODIFY /icemobile/trunk/icemobile/jsf/components/tests/mobitest/src/main/java/org/icefaces/mobile/layout/LayoutBean.java MODIFY /icemobile/trunk/icemobile/jsf/components/component/src/org/icefaces/mobi/component/tabset/TabSetRenderer.java MODIFY /icemobile/trunk/icemobile/jsf/components/component/src/org/icefaces/mobi/component/tabset/TabSet.java MODIFY /icemobile/trunk/icemobile/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/layout/tabset-example.xhtml |
rev 33519 has initial checkin of tabSet where disabled is implemented in JSF, core rendering is used as much as is possible (not a lot) and common interface to ensure attributes are same.
{tabInfo.orientation}JSP has new tabSetController component which only takes child of tabPane
<mobi:tabSetControl id="tabsetOne"
orientation="$
"
{tabInfo.autoWidth}autoWidth="$
"
{tabInfo.disabled}disabled="$
"
{tabInfo.height}height="$
"
{tabInfo.autoHeight}autoHeight="$
"
{tabInfo.style}style="$
"
{tabInfo.styleClass}styleClass="$
"
{tabInfo.selectedId}selectedId="$
">
<mobi:tabPane id="pane1" title="Sailor">
<%@ include file="../includes/pane1.jsp"%>
</mobi:tabPane>
<mobi:tabPane id="pane2" title="Breaker">
<%@ include file="../includes/pane2.jsp"%>
</mobi:tabPane>
<mobi:tabPane id="pane3" title="Skate">
<%@ include file="../includes/pane3.jsp"%>
</mobi:tabPane>
</mobi:tabSetControl>
buffered approach taken with new tags. Still some work to do to enhance performance, but tests in new JSP test app show promise. (
MOBI-659test app not yet checked in).