Hi group and Volker,

Thx for the hint with the prefix ... should have thought of it.

The jsf code looks like:

<%@ taglib uri="http://java.sun.com/jsf/core"; prefix="f"%>
<%@ taglib uri="http://myfaces.apache.org/tobago/component";
prefix="tc"%>
<%@ taglib uri="http://myfaces.apache.org/tobago/extension";
prefix="tx"%>

<f:view>
        <tc:page width="800px" height="600px">
                <f:facet name="layout">
                        <tc:gridLayout rows="1*;fixed;1*" 
columns="1*;500px;1*"/>
                </f:facet>
                
                <tc:cell spanX="3"/>

                <tc:cell/>
                <tc:box id="login_Form" label="User Verwaltung">
                        <f:facet name="layout">
                                <tc:gridLayout />
                        </f:facet>
                        <tx:in id="name" value="#{loginBean.name}" 
required="true" label="Name">
                                <f:validateLength minimum="2" maximum="10" />
                        </tx:in>
                        <tx:in id="password" value="#{loginBean.password}" 
required="true" label="Passwort">
                                <f:validateLength minimum="2" maximum="10" />
                        </tx:in>
                        <tc:button id="button" action="#{loginBean.login}" 
                                label="Login" defaultCommand="true"/>
                </tc:box>
                <tc:cell/>
                
                <tc:cell spanX="3"/>
                
        </tc:page>
</f:view>

And the Screenshot is attached. There you can see, that there is smth.
missing on the right side. 

Thx in advance (again)

Nils Drews

On Wed, 26 Apr 2006 14:53:18 +0200, "Volker Weber"
<[EMAIL PROTECTED]> said:
> Hi Niels,
> 
> you still speaking about tobago? Please prefix tobago issues with
> '[tobago]' in the subject.
> 
> could you please post the jsf code? And maybe a screenshot.
> 
> Without more info my guess is a misconfiguration of the layout
> constraints.
> 
> 
> Regards,
>   Volker
> 
> 
> Nils Drews wrote:
> > Hello,
> > 
> > OK, now I'm getting a box, everything is rendered fine ... except for
> > the only Problem, that each Box is cut off on the right side. It seems,
> > that there are only a few px missing, but it's still annoying. Anyone
> > got the same problem ??
> > 
> > Just another Dummy-Question!!
> > 
> > Ciao, Nils Drews
> 
> -- 
> Don't answer to From: address!
> Mail to this account are droped if not recieved via mailinglist.
> To contact me direct create the mail address by
> concatenating my forename to my senders domain.
-- 
  Nils Drews
  [EMAIL PROTECTED]

<<attachment: Shot1.jpg>>

<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc"%> <%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx"%>

Reply via email to