You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Helmut Swaczinna (JIRA)" <de...@myfaces.apache.org> on 2009/08/10 17:42:14 UTC

[jira] Created: (TOBAGO-781) Splitbar component

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.


[jira] Updated: (TOBAGO-781) Splitbar component

Posted by "Helmut Swaczinna (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/TOBAGO-781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Helmut Swaczinna updated TOBAGO-781:
------------------------------------

    Status: Patch Available  (was: Open)

> 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
>         Attachments: splitbar.tgz
>
>
> 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.