Splitbar component
------------------

                 Key: TOBAGO-781
                 URL: https://issues.apache.org/jira/browse/TOBAGO-781
             Project: MyFaces Tobago
          Issue Type: New Feature
          Components: Sandbox
    Affects Versions: 1.0.22
         Environment: All
            Reporter: Helmut Swaczinna
            Priority: Minor


I've created a splitbar component in the sandbox. Sources (for 1.0.22)  and 
more examples are attached.

Example:

  <tc:page id="testPage" width="500px" height="100px">
    <tc:panel>
      <f:facet name="layout">
        <tc:gridLayout rows="*" 
columns="#{controller.splitbarState1.layoutTokensPixel}" />
      </f:facet>
      <tc:panel>
        <tc:in value="Left"/>
      </tc:panel>
      <tcs:splitbar orientation="vertical" 
state="#{controller.splitbarState1}"/>
      <tc:panel>
        <tc:in value="Right"/>
      </tc:panel>
    </tc:panel>
  </tc:page>

Controller.java

SplitbarState splitbarState1 = new SplitbarStateImpl("*;5px;*");
public SplitbarState getSplitbarState1() {
  return splitbarState1;
}


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to