Re: Round corners n' stuff? Possible Contribution?

2008-12-21 Thread Nino Martinez
Ned Collyer wrote: FYI, I cannot see the liquid stuff with the latest firefox on osx leopard - its borked. Hmm, I tried browsershots http://browsershots.org/http://www.ruzee.com/files/liquid-canvas/demo.html , but could'nt get any "ugly" or broken pages...? Click the link and see the screen

Re: Round corners n' stuff? Possible Contribution?

2008-12-21 Thread Ned Collyer
FYI, I cannot see the liquid stuff with the latest firefox on osx leopard - its borked. Also looks like crap in safari :) Soo bring on the nifty - but I wouldn't waste your time on liquid canvas because I do not believe the browser support (currently) warrants your effort. I think it would

How to rid of the message "Your input is invalid." for the whole form component

2008-12-21 Thread Vitaly Tsaplin
Hi there, I have a component which is a subclass of FormComponentPanel. Inside it has an input field with a validator attached. Validator calls error (validatable, resourceKey). And so far it's ok. But except my error message I see another one "Your input is invalid." which I don't like to be

Re: Deploy problem

2008-12-21 Thread Timm Helbig
Hi Pierre, firstoff, why don't you upgrade on Wicket 1.3.5, or at least to a released version. Could you please post your web.xml file. Regards, Timm Am Sunday 21 December 2008 13:18:09 schrieb Pierre Gilquin: > Hi all, > > I have a problem deploying a Wicket App. (Not Wicket app work fine).

Re: Dynamic Simple (html) Components

2008-12-21 Thread Ernesto Reinaldo Barreiro
Hi, > Component: TextField > Required: True > Type: String > Length:30 > Order: 2 (The order in which it needs to be displayed on the > form) > Defaul Value: "some value" > and so on. > > An entry can also define a compound component (like a Wicket panel comp

Re: Dynamic Simple (html) Components

2008-12-21 Thread mito
Thanks for the answers guys, getting some ideas here that might be helpful. In a way what our backend allows us to do is define a (specific) form and store it in our database. So, when you call the backend service, it returns and array declaring all the components that will make up the final form.

Re: Is there any collapsible container ?

2008-12-21 Thread Nino Martinez
I think I upgraded it for 1.4 at some point ... Jeremy Thomerson wrote: See the accordian in Wicket Stuff. You might need to help Nino get it up to date with Wicket 1.4. I think it's still on 1.3 On Sun, Dec 21, 2008 at 8:13 AM, miro wrote: not hide it but contract it to a line and clic

Re: Is there any collapsible container ?

2008-12-21 Thread dtoffe
Check this one: http://wicketwebbeans.sourceforge.net/wiki-html/NestedBeans.html Daniel miro wrote: > > Is there any collapsible container? > -- View this message in context: http://www.nabble.com/Is-there--any-collapsible-container---tp21112328p21117097.html Sent from the

Filtering data in DataTable

2008-12-21 Thread legen_dary
Is there a way to create filter for numeric types in DataTable column that would allow user to enter/choose value for filter state object and choose if values selected to be shown in DataTable should be bigger, lesser or equal to the entered/chosen value? I'd really appreciate any help Best regar

Re: Is there any collapsible container ?

2008-12-21 Thread Martin Makundi
And there is an implementation using border whose quickstart is available here: https://issues.apache.org/jira/browse/WICKET-1789 ** Martin 2008/12/21 Jeremy Thomerson : > See the accordian in Wicket Stuff. You might need to help Nino get it up to > date with Wicket 1.4. I think it's still on

Re: Is there any collapsible container ?

2008-12-21 Thread Jeremy Thomerson
See the accordian in Wicket Stuff. You might need to help Nino get it up to date with Wicket 1.4. I think it's still on 1.3 On Sun, Dec 21, 2008 at 8:13 AM, miro wrote: > > not hide it but contract it to a line and click again expand it. > > Newgro wrote: > > > > miro schrieb: > >> Is there a

Re: Is there any collapsible container ?

2008-12-21 Thread miro
not hide it but contract it to a line and click again expand it. Newgro wrote: > > miro schrieb: >> Is there any collapsible container? >> > You want to hide a panel on button-click? Simply set it visible=false. > > -

Re: Dynamic Simple (html) Components

2008-12-21 Thread Ernesto Reinaldo Barreiro
Hi, I see no contradiction in having your UI (declaratively) defined by a service and having panels (with associated HTML markup): that markup could "match" what you wanted on your "definition". As you also suggest, you could use repeaters to create META-components that read your definition and p

Deploy problem

2008-12-21 Thread Pierre Gilquin
Hi all, I have a problem deploying a Wicket App. (Not Wicket app work fine). Wicket 1.3.0 rc1 / Tomcat 5.5.20 / JDK 1.4.2 Thanks in advance for any help Pierre The trace is : INFO: Manager: install: Installing web application at '/TestIso' from 'TestIso.war' java.io.FileNotFoundException: T

Re: code for DataGrid with vertical scrolling

2008-12-21 Thread Per Newgro
miro schrieb: please point me for the code with data grid vertical scrolling component. If i'm not completely wrong you have to do it by CSS property overflow. Cheers Per - To unsubscribe, e-mail: users-unsubscr...@wicket.

Re: Is there any collapsible container ?

2008-12-21 Thread Per Newgro
miro schrieb: Is there any collapsible container? You want to hide a panel on button-click? Simply set it visible=false. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: us

Re: Turn off form validation

2008-12-21 Thread noon
I solved similar problem where I had some required TextField components and an AJAX component which does a AJAX submit. During this AJAX submit I wanted to prohibit all the form validations. I achieved this by setting the AJAX components (an autocomplete TextField with custom AJAX behaviour) into

Re: Dynamic Simple (html) Components

2008-12-21 Thread Nino Martinez
Hi Mito Behaviors can also add stuff (like encapsulating your tag in to new tags) to the component, Like I describe here: http://ninomartinez.wordpress.com/2008/12/11/wicket-never-stops-to-impress-me/ mito wrote: Hi, I've been using Wicket at home for quite a while. The company I work for