Re: DateTimeField and zero padding hours

2008-04-15 Thread Johan Compagner
I dont know exatly dont see an example here, but i just guess you dont comply completely with the format and then the formatter just tries to interperd it. On 4/14/08, Federico Fanton <[EMAIL PROTECTED]> wrote: > On Sat, 12 Apr 2008 18:25:56 +0200 > "Johan Compagner" <[EMAIL PROTECTED]> wrote: >

Re: page reload

2008-04-15 Thread Maurice Marrink
Even though version 1.3.3 has been released 1.3.2 is fine. Theoretically only this is required: @Override public final void onClick() { BaseGroup group = (BaseGroup) getModelObject(); groupManager.deleteGroup(group.getId()); } But it might be possible the model of the listview is loade

Re: MOdal window feedback panel something strange is going on

2008-04-15 Thread Maurice Marrink
Can you take a look in the ajax debug window to see if you get an error? Maurice On Mon, Apr 14, 2008 at 4:35 PM, taygolf <[EMAIL PROTECTED]> wrote: > > Hey guys. I am not sure that this has anything to do with the feed back panel > or not but I wanted to mention it. > > Here is what I have. I

Notification on session destroyed?

2008-04-15 Thread Nino Saturnino Martinez Vazquez Wael
Hi I've checked a little around, but could not find anything directly. This is what I want todo: When a user either logs out or expire I want to update a pojo attached to session. So does anyone have an example on how todo this(if possible)? -- -Wicket for love Nino Martinez Wael Java Spe

Re: Wicket portles in Sun Portal

2008-04-15 Thread Ate Douma
I don't know the Sun Portal that well, but AFAIK they have (or are working on) beta Portlet API 2.0 (JSR-286) support already. As the interfaces which Wicket Portlet currently needs from Apache Portals Bridges Common are natively supported with JSR-286, the easiest solution is: a) waiting for JS

Wicket + CMS

2008-04-15 Thread Noz, Felix
Hello everybody, I'm currently evaluating different Frontend Frameworks to use them with a Java-Based CMS (OpenCms) and I'm very interested in trying wicket. The CMS has got its own Template mechanism which is based on JSP. Because it would be a problem for us to throw away all existing Templa

Expected mounting options

2008-04-15 Thread Erik van Oosten
Hi, To my big surprise the following does not work: // The item page is mounted on /tips, but only for urls that have an item id. mount(new MixedParamUrlCodingStrategy("tips", ItemPage.class, new String[]{ParameterConstants.PARAM_ITEM_ID}) { @Override pub

Re: Package resource not found in YUI package

2008-04-15 Thread Fynn
Now I use wicket 1.3.3 and this warnings are still in my log file... in the jar package i can´t find this files Nobody an idea? -- View this message in context: http://www.nabble.com/Package-resource-not-found-in-YUI-package-tp16395623p16696644.html Sent from the Wicket - User mailing list arch

How to delay or customized button onSubmit() method

2008-04-15 Thread freak182
Hello, I have a complicated problem here adn hoping for your bright ideas about my problem. My problem is, how can can I process the codes after i get the value from modal window..to be more accurate here is some code snippet: a modal windows snippet: modalWindow.setWindowClosedCallback(new Moda

Re: Can only locate or create session in the context of a request cycle.

2008-04-15 Thread Maurice Marrink
I think using the httpsession in this case is an acceptable solution. Maurice On Tue, Apr 15, 2008 at 3:10 AM, mfs <[EMAIL PROTECTED]> wrote: > > Guys, > > Please comment.. > > I have a non-wicket AuthenticationFilter which is intercepting all request > to my wicket-app and checking if the re

Re: Performance question

2008-04-15 Thread Johan Compagner
i do see that you are also counting the sessionsize, That does have an overhead of itself. On Mon, Apr 14, 2008 at 11:57 PM, Ritz123 <[EMAIL PROTECTED]> wrote: > > Hi, > > I have created first couple of pages of my wicket application but have > some > performance concerns. > > The pages (even the

Re: Performance question

2008-04-15 Thread Johan Compagner
you can use this one for a while http://yourkit.com/eap/index.jsp not everything has to be opensource or free johan On Tue, Apr 15, 2008 at 12:39 AM, Ritz123 <[EMAIL PROTECTED]> wrote: > > Havent used a profiler in a while - is there any opensource one which can > work with tomcat? > > > igor.

Re: Notification on session destroyed?

2008-04-15 Thread Johan Compagner
attached to a session of the session that is just invalided/expired? That wont work. You cant get to a http sessions attributes when it is invalidated. To know which session id's are destroyed: public void sessionDestroyed(String sessionId) of WebApplication johan On Tue, Apr 15, 2008 at 9:07

Re: Wicket + CMS

2008-04-15 Thread Uwe Schäfer
Noz, Felix schrieb: I'm currently evaluating different Frontend Frameworks to use them with a Java-Based CMS (OpenCms) and I'm very interested in trying wicket. The CMS has got its own Template mechanism which is based on JSP. Because it would be a problem for us to throw away all existing Te

Re: Localization, Bookmarkable pages, and mounting strategies

2008-04-15 Thread Sebastiaan van Erk
Erik van Oosten wrote: Johan Compagner wrote: So then we should give a Page a locale field. I am in favour of doing this, even if Sebastiaan's problem is solved differently. I have a part of my site that is multilingual (the public pages), and another part is not (the admin screens, in English)

Re: Wicket + CMS

2008-04-15 Thread Rüdiger Schulz
Hello, I have no solution, just an idea on what could work as well, as I have thought about a Wicket / openCMS connection before (never had to implement it though). AFAIK OpenCms can publish its pages statically. Maybe you could configure your CMS templates in a way that they become valid wicket

Re: Radio group, model

2008-04-15 Thread Goran Novak
Thanks, I got it to work but I dont't understand why does RadioGroup has to have its own model. RadioGroup has a constructor "RadioGroup(java.lang.String id)", why does it exist if you can't create RadioGroup without its own model. It seems somewhat misleading. Here is the solution if someone el

inlineframe usage

2008-04-15 Thread dvd
Hello: I am trying to implement the following in one html page    when clicked, it would call another page IFrame.class which has IFrame.html like

Re: Can only locate or create session in the context of a request cycle.

2008-04-15 Thread Johan Compagner
if there is no session do you already want to store something? On Tue, Apr 15, 2008 at 3:10 AM, mfs <[EMAIL PROTECTED]> wrote: > > Guys, > > Please comment.. > > I have a non-wicket AuthenticationFilter which is intercepting all request > to my wicket-app and checking if the request is coming in

Re: Notification on session destroyed?

2008-04-15 Thread Nino Saturnino Martinez Vazquez Wael
Hmm, that feels a bit hacky.. Then I'll need to implement a way of tracking sessions, and I saw something about keeping references to destroyed sessions arent that great. It might be me that's just way of context(not knowing all of the internals), but should something like this be easy todo in

Re: Performance question

2008-04-15 Thread Daniel Frisk
Maybe the profiler that is bundled with NetBeans can be sufficent? http://profiler.netbeans.org/ // Daniel jalbum.net On 2008-04-15, at 09:41, Johan Compagner wrote: you can use this one for a while http://yourkit.com/eap/index.jsp not everything has to be opensource or free johan On Tue,

Re: Localization, Bookmarkable pages, and mounting strategies

2008-04-15 Thread Erik van Oosten
Haha, brilliant. Sometimes you forget the simple stuff :) Thanks Sebastiaan, Erik. Sebastiaan van Erk wrote: > Shouldn't it work if you just override getLocale() on your admin base > page to return your admin locale? > > Regards, > Sebastiaan > --

Re: inlineframe usage

2008-04-15 Thread Rüdiger Schulz
Hello dvd, If the URL is an external one (i.e. not a link to a wicket page), you can't use the InlineFrame class from wicket. Just use WebmarkupContainer and link it to the iframe tag. I had the same "problem" when doing the iframe integration for wicketstuff-picnik (not yet comitted, but will be

Re: wicket-contrib-javaee

2008-04-15 Thread greeklinux
Hello, I am using maven2 but did not found a maven2 repository with wicket-contrib-javaee. Found only this one http://wicketstuff.org/maven/repository/org/wicketstuff/maven/ -greeklinux igor.vaynberg wrote: > > if you used maven it wouldve all been setup for you... > > -igor > > > On Sun,

Re: inlineframe usage

2008-04-15 Thread dvd
Hello, Rudiger: I got it and it worked. Thanks very much. >Hello dvd, > >If the URL is an external one (i.e. not a link to a wicket page), you can't >use the InlineFrame class from wicket. Just use WebmarkupContainer and link >it to the iframe tag. I had the same "problem" when doing the iframe

Re: Wicket + CMS

2008-04-15 Thread Markus Strickler
Hi, same thing here. I'd definitely be interested in a solution, as we are using OpenCMS (and other CMSes that write content statically) quite a lot for our customer's projects and I'd rather like to use Wicket (as opposed to JSP or PHP) for form processing and other interactive parts of the webs

FactoryPattern + Forms/ Enclosures + Feedback

2008-04-15 Thread Korbinian Bachl - privat
Hello, Ive got 2 problems, 1st; I tried the FactoryPattern with form components like TextField and now have the problem, that due to the recreation of the FormFields by the Factory the inserted value into the model gets lost in case of a invalid form submit (e.g: error in one field = all entered

Auto-Complete TextField Problem

2008-04-15 Thread Vatroslav
Hi, I've problem with AutoCompleteTextField with IE6 and Wicket 1.3.3. installed on Tomcat6 and/or Jetty6. Online example: http://www.wicketstuff.org/wicket13/ajax/autocomplete works perfectly. When I type letters, drop down list is refreshed and updated accordingly to typed text. I suppose it i

Strange behavior of wicket-security libraries in netbeans

2008-04-15 Thread Sergey Podatelev
Hello Wicket people, I'm experiencing a strange behavior of Netbeans (6.0.1) IDE working with Wicket-Security components. Maybe this question is more Netbeans- than Wicket-related, but I thought I'd better ask here first. I have a BaseSecurePage class that implements ISecurePage. Its constructor

Re: Strange behavior of wicket-security libraries in netbeans

2008-04-15 Thread Sergey Podatelev
Actually, I tried to create a new project from scratch, added Wicket-Security-1.3 libraries there, added BaseSecurePage, and the error is still there. I also tried Clean and Build (I assume this is what stands for "delete and recompile" in Netbeans with no luck. Once I changed the library to Wicke

Re: Strange behavior of wicket-security libraries in netbeans

2008-04-15 Thread Korbinian Bachl - privat
AFAIK the packages have changed between the Versions, so NB cant find them (thats correct though); try a full recompile (the one with delete & recompile) and you should get the wrong classes in the output; there hit the link to the classes and issue an "Fix Imports" via the right context menu,

Re: DateTimeField and zero padding hours

2008-04-15 Thread Charlie Dobbie
I'm playing with the DateTimeField at the moment, and if I set the time to midnight I get "0" for hours and "00" for minutes. It makes sense to me to pad minutes out to two digits. Hours should arguably be padded out to two digits if you're in 24-hour mode, but the component doesn't do that at th

Re: Auto-Complete TextField Problem

2008-04-15 Thread Gerolf Seitz
it's fixed in trunk for 1.3.4 and 1.4M1 Gerolf On Tue, Apr 15, 2008 at 12:25 PM, Vatroslav <[EMAIL PROTECTED]> wrote: > > Hi, > I've problem with AutoCompleteTextField with IE6 and Wicket 1.3.3.installed > on Tomcat6 and/or Jetty6. > > Online example: > http://www.wicketstuff.org/wicket13/ajax

Jumping in Breadcrump Hierarchy

2008-04-15 Thread gumnaam23
How can I jump in breadcrumb hierarchy. Say I have some thing like Home/Schedules/Events & Home/Maintenance Schedules/Downtimes I want to be able to jump to any of these breadcrumb links from any where. For that I have a Page with 2 divs. One div contains BreadcrumbPanelLinks to each of the

Tree redrawing

2008-04-15 Thread rzsolt
It seems that wicket Tree items always redraw themself when I drag the mouse over them. Why? I have a page with two panels on it: a menu tree on the left and a form panel on the right. Actually the right side form is submitted by an ajax request and with the help of the LasyLoadingPanel because th

Re: Expected mounting options

2008-04-15 Thread Erik van Oosten
I wrote a replacement for WebRequestCodingStrategy and attached it to: https://issues.apache.org/jira/browse/WICKET-1534 This coding strategy will first look at the mount path, and then calls matches(String url) on the mounted URL encoders until one returns true. There is a lot that can be done t

Getting the context root

2008-04-15 Thread unka_hahrry
Hello! Is there a possibility to get the context root which I defined in my context descriptor for Tomcat? -- View this message in context: http://www.nabble.com/Getting-the-context-root-tp16699820p16699820.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: Getting the context root

2008-04-15 Thread James Carman
You can use the servlet API to do that. Request.getContextPath() or something like that. On Tue, Apr 15, 2008 at 7:37 AM, unka_hahrry <[EMAIL PROTECTED]> wrote: > > Hello! > > Is there a possibility to get the context root which I defined in my context > descriptor for Tomcat? > -- > View th

Re: [WUG] Copenhagen

2008-04-15 Thread Guðmundur Bjarni
Hey Nino, I just saw this message now. I signed up myself and a friend of mine who is quite interested about Wicket. regards, Guðmundur Bjarni Nino.Martinez wrote: > > Hi > > This is a reminder, and callout as it would be really nice to be some > more people in order to get discussions goi

Re: Wicket + CMS

2008-04-15 Thread Rüdiger Schulz
2008/4/15, Markus Strickler <[EMAIL PROTECTED]>: > > However you would potentially have many HTML "templates" that are all > backed by > the same wicket page class. And so far I couldn't think of a way to handle > this > in wicket. If think you can override getVariation() to accomplish this: http

problem with menu

2008-04-15 Thread Mathias P.W Nilsson
Hi! I have a problem with a menu that should be in all pages but have different links. Is there anyway of achiving this. Adding links to parent class or something like that. It is a right meny with the same layout but different content. -- View this message in context: http://www.nabble.com/pr

Re: Performance question

2008-04-15 Thread Alex Jacoby
I was just looking into this yesterday. If you use eclipse, the Test and Performance Tools Platform looks good: http://www.eclipse.org/tptp/ Unfortunately I couldn't get it to cooperate with my version of MyEclipse :( Alex On Apr 14, 2008, at 6:39 PM, Ritz123 wrote: Havent used a profil

Re: DateTimeField and zero padding hours

2008-04-15 Thread Federico Fanton
On Tue, 15 Apr 2008 08:59:44 +0200 "Johan Compagner" <[EMAIL PROTECTED]> wrote: > I dont know exatly dont see an example here, but i just guess you > dont comply completely with the format and then the formatter just > tries to interperd it. Problem found, Wicket is using my custom converter for

Re: [WUG] Copenhagen

2008-04-15 Thread Nino Saturnino Martinez Vazquez Wael
Great, the more the merrier:) Guðmundur Bjarni wrote: Hey Nino, I just saw this message now. I signed up myself and a friend of mine who is quite interested about Wicket. regards, Guðmundur Bjarni Nino.Martinez wrote: Hi This is a reminder, and callout as it would be really nice to be

Re: MOdal window feedback panel something strange is going on

2008-04-15 Thread taygolf
Nope I am not getting an error in the ajax debug. From what I can see the popup is sending back the correct value when I go through my normal steps but when I have the feedback panel come up and then bring up the popup I am allowed to select my choice but the popupmodal window is sending back a bl

Re: MOdal window feedback panel something strange is going on

2008-04-15 Thread Nino Saturnino Martinez Vazquez Wael
Could you create a quickstart? taygolf wrote: Nope I am not getting an error in the ajax debug. From what I can see the popup is sending back the correct value when I go through my normal steps but when I have the feedback panel come up and then bring up the popup I am allowed to select my choic

Re: problem with menu

2008-04-15 Thread Nino Saturnino Martinez Vazquez Wael
Forgot to give an example... Nino Saturnino Martinez Vazquez Wael wrote: Markup inheritance could be the way to go, it's been great for me. You could use a listview in the parent... A little like I've done with the accordion menu. http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-con

Re: problem with menu

2008-04-15 Thread Nino Saturnino Martinez Vazquez Wael
Markup inheritance could be the way to go, it's been great for me. However I think you could also use borders? Theres lots of solutions:) regards Nino Mathias P.W Nilsson wrote: Hi! I have a problem with a menu that should be in all pages but have different links. Is there anyway of achiv

Re: Wicket + CMS

2008-04-15 Thread Jan Kriesten
Hi, However you would potentially have many HTML "templates" that are all backed by> the same wicket page class. And so far I couldn't think of a >> way to handle this in wicket. hmm, I don't know OpenCMS good enough, but I'd say it shouldn't be a problem to map static files thru a wicket-pa

A very very minor issue with SelectOption

2008-04-15 Thread Michael Sparer
I was just fiddling around with the w3 validator and validated some of my wicket-created pages and they didn't pass the XHTML 1.0 Transitional validation due to the use of selected="true" instead of selected="selected" in the SelectOption class (from wicket-extensions). i know that's a very very

Re: Strange behavior of wicket-security libraries in netbeans

2008-04-15 Thread Sergey Podatelev
Okay, this one has resolved itself after I did some lib-containing-folder management. Apparently, this was one of those classpath madness issues. On Tue, Apr 15, 2008 at 2:35 PM, Sergey Podatelev < [EMAIL PROTECTED]> wrote: > Hello Wicket people, > > I'm experiencing a strange behavior of Netbean

Re: Wicket + CMS

2008-04-15 Thread Uwe Schäfer
Jan Kriesten schrieb: I just did something like this to have a certain panel use FreeMarker templates which dynamically creates wicket:components (actually, this will be a new CMS based on Wicket... 8 Weeks to go I suppose)! go go go! people are waiting for smth like that ;) i´ve 'heard' the

Re: FactoryPattern + Forms/ Enclosures + Feedback

2008-04-15 Thread Korbinian Bachl - privat
Follow-UP: I solved the problem I had with the listView; it works as expected if you do a .setReuseItems(true); to the ListView However, the problem with the wicket enclose to a feedBackPanel still exists... this one wont work; Korbinian Bachl - privat schrieb: Hello, Ive got 2 problem

WicketTester link question

2008-04-15 Thread Michael Perkonigg
Hello, can I use the WicketTester.clickLink on a generic html link or only on links set in the java class? It seems to me that I need the wicket id of the link to clickLink it. Thanks, Mike - To unsubscribe, e-mail: [EMAIL P

Re: Wicket + CMS

2008-04-15 Thread Igor Vaynberg
the cms matej and i are working on will be opened shortly after may 1st. it is based on wicket and jcr. mind you it is not meant to be a full-blown cms system yet, but rather a framework/library that makes it easy to integrate a cms system into a wicket app. the small example app we will provide wi

Re: wicket-contrib-javaee

2008-04-15 Thread Igor Vaynberg
the author did not add the module to our bamboo build server, so there are no snapshots/releases available. svn co ... mvn install -igor On Tue, Apr 15, 2008 at 1:59 AM, greeklinux <[EMAIL PROTECTED]> wrote: > > Hello, > > I am using maven2 but did not found a maven2 repository > with wicket

Re: Radio group, model

2008-04-15 Thread Igor Vaynberg
you really should read the javadoc for radiogroup -igor On Tue, Apr 15, 2008 at 1:20 AM, Goran Novak <[EMAIL PROTECTED]> wrote: > > Thanks, > > I got it to work but I dont't understand why does RadioGroup has to have its > own model. RadioGroup has a constructor "RadioGroup(java.lang.String i

Re: WicketTester link question

2008-04-15 Thread Igor Vaynberg
only on a link that is a wicket component -igor On Tue, Apr 15, 2008 at 8:01 AM, Michael Perkonigg <[EMAIL PROTECTED]> wrote: > Hello, > > can I use the WicketTester.clickLink on a generic html link or only on > links set in the java class? > It seems to me that I need the wicket id of the lin

Re: Tree redrawing

2008-04-15 Thread Thomas Kappler
They don't redraw themselves on mouseover. Must be an IE issue. Thomas On Tue, Apr 15, 2008 at 1:30 PM, rzsolt <[EMAIL PROTECTED]> wrote: > > It seems that wicket Tree items always redraw themself when I drag the mouse > over them. Why? I have a page with two panels on it: a menu tree on the

Re: MOdal window feedback panel something strange is going on

2008-04-15 Thread taygolf
I think i have figured out the problem but I am not sure why it did not work in my original code. In the original code I have Page 1 in page one I have a Feedbackpanel, a RequiredTextfield and a modal. The Textfield has a property model and i want this particular testfield to use "name" from that

Re: Can only locate or create session in the context of a request cycle.

2008-04-15 Thread mfs
Yeah i need to..i.e. the very authentication token so that for subsequent request i cant avoid the authentication call.. Well i can opt for HttpSession but then i will be using the same wherever in my pages i need it (there are a couple of scenarios where i need to pass the info back), and hence

Re: Accesing Wicket Session from a non-wicket filter - Suggestions

2008-04-15 Thread mfs
sure that i can, but i need to store the info in the session, which doesnt exist yet, and dont want to compromise the abstraction wicket provides by using HttpSession..and hence relying/using the same wherever i need it. igor.vaynberg wrote: > > use session.exists() to test if the session is t

Re: A very very minor issue with SelectOption

2008-04-15 Thread Igor Vaynberg
fixed -igor On Tue, Apr 15, 2008 at 6:15 AM, Michael Sparer <[EMAIL PROTECTED]> wrote: > > I was just fiddling around with the w3 validator and validated some of my > wicket-created pages and they didn't pass the XHTML 1.0 Transitional > validation due to the use of selected="true" instead o

1.3, resource locator and properties

2008-04-15 Thread Scott Swank
We are finally upgrading to Wicket 1.3 (in particular to 1.3.3 from 1.2.6) and our StringResourceModels can no longer find their property files, which leaves our web pages containing the following: [Warning: String resource for 'tickets' not found] Our application init method contains: IR

help wanted for wicket autocomplete component

2008-04-15 Thread Patel, Sanjay
Hi, I am trying to implement a simple auto complete AJAX text box which gives me the names of actors as I type in (by searching and getting the list of actors from database), and set the Model Object (which is Actor selected from the auto complete drop down) for the Panel (in which this Aut

markup inheritance...

2008-04-15 Thread Jan Kriesten
Hi, I've a case on markup inheritance where I'm unsure: Given the following markup [cell] which is an excerpt from Datatable. I add an OddEvenItem in newRowItem for each row. So far so good. Now: On clicking a row, I want to change the display with some logic, especially I want to h

Re: help wanted for wicket autocomplete component

2008-04-15 Thread Ryan Gravener
Set the model object in getTextValue(java.lang.Object object) but in your renderChoice(*) do not call getTextValue!!! make another method called getStringValue() and return the actor name, then in getTextValue set the modelobject and return getStringValue(). I am not positive this will work. On

Unable to serialize class: org.apache.wicket.util.io.DeferredFileOutputStream

2008-04-15 Thread adrienleroy
Hello, I experience a serialization problem with one of my page, i have got a page with a wizard in it, in this wizard i have a step with five uploadfield, in most of the case i have got no error using my wizard, but sometime some user report me an "internal error" message, and when i check the l

Re: 1.3, resource locator and properties

2008-04-15 Thread Scott Swank
Previously we retrieved the CompoundResourceStreamLocator and added our ResourceStreamLocator to it. In 1.2 did this take care of StringResourceLoader too? WebApplicationPath resourceFinder = (WebApplicationPath) getResourceSettings().getResourceFinder(); resourceFinder.add(Env.getInstance(

Re: Unable to serialize class: org.apache.wicket.util.io.DeferredFileOutputStream

2008-04-15 Thread Scott Swank
Your AjouterTableauWizardPage should not have a stream on it as a serializable field. If you need to have that field then you'll need to make it transient. - Scott On Tue, Apr 15, 2008 at 12:14 PM, adrienleroy <[EMAIL PROTECTED]> wrote: > > Hello, > > I experience a serialization problem with

Re: problem with menu

2008-04-15 Thread Mathias P.W Nilsson
Thanks! How can this be done with markup inheritance. I want to display a div menu like -- Header content change for pages -- footer -- The content for pages could be and with links. If I use inheritance then the content will be in a parent page. I don't know how to proceed. -- V

Wicket is the state into which all web frameworks will eventually evolve

2008-04-15 Thread Andrew Broderick
Hi, Just wanted to take time to say I LOVE WICKET! It is a completely different approach from the other MVC frameworks. For modularity, stability, ease of use, and separation of concerns, it blows them out of the water. We have been using Wicket 1.3 intensively for a month now. We are building

Re: Wicket is the state into which all web frameworks will eventually evolve

2008-04-15 Thread Vitaly Tsaplin
...It's also worth to mention an extremely helpful community! On Tue, Apr 15, 2008 at 10:39 PM, Andrew Broderick <[EMAIL PROTECTED]> wrote: > Hi, > > Just wanted to take time to say I LOVE WICKET! It is a completely different > approach from the other MVC frameworks. For modularity, stability

Re: Wicket is the state into which all web frameworks will eventually evolve

2008-04-15 Thread Piller Sébastien
Hello, I can only agree 100% with what you said. I came to Wicket after a lot of php dev, and it was a very strong evolution. Not all benefits were due to wicket, some were inherent of the java language (type safety, semi compiled code...), but the wicket's built in components are very useful

Re: help wanted for wicket autocomplete component

2008-04-15 Thread Ryan Sonnek
have you looked at the wicketstuff-scriptaculous project? there's an autocomplete text field that should be what you need. On Tue, Apr 15, 2008 at 1:53 PM, Ryan Gravener <[EMAIL PROTECTED]> wrote: > Set the model object in getTextValue(java.lang.Object object) > > but in your renderChoice(*) do

problems with stateless forms and radiogroups/checkgroups

2008-04-15 Thread Alexei Sokolov
Hello, I'm trying to use radiogroup/checkgroup with stateless form, and it is not possible at the moment. I get the following exception: submitted http post value [radio4] for RadioGroup component [0:form:whatever] is illegal because it does not contain relative path to a Radio componnet. Due to t

Re: warning: [deprecation] AuthenticatedWebSession(AuthenticatedWebApplication,Request)

2008-04-15 Thread cjlyth
I get it as well with 1.3.3 with the single parameter constructor. When I downgrade to 1.3.2 the error goes away. sindibade wrote: > > Hi all, > > I still encounter the same problem with wicket 1.3.3 > > Thanx, > > Tarik > > > > > Mr Mean wrote: >> >> AuthenticatedWebApplication used t

best strategy to add toolbar

2008-04-15 Thread Eyal Golan
Hi, I have a toolbar that I want to add to my table as bottom-toolbar ONLY IF there are records (data-provider size >0). Here's where I put it: ... NumRecordsToolbar numRecordsToolbar = new NumRecordsToolbar(this); ... @Override protected void onBeforeRender() { if (da

Re: problems with stateless forms and radiogroups/checkgroups

2008-04-15 Thread Johan Compagner
Make a jira issue for this On 4/16/08, Alexei Sokolov <[EMAIL PROTECTED]> wrote: > Hello, > I'm trying to use radiogroup/checkgroup with stateless form, and it is not > possible at the moment. I get the following exception: > > submitted http post value [radio4] for RadioGroup component > [0:form

Re: Dynamic Creation of a button using style

2008-04-15 Thread Eyal Golan
I have a better solution. I am attaching the filed with the new solution. I now use three images - left, right and middle. I force the user to use in the markup. I create an inner table inside the button. Note: I could use a behavior but just for easier presentation, I did not :) Eyal Golan O