Re: Explaination of Ajax in Wicket

2009-03-19 Thread James Carman
Care to elaborate on how/why you're confused? On Wed, Mar 18, 2009 at 9:34 PM, Mathias P.W Nilsson math...@snyltarna.se wrote: Ok, I got it to work but I'm still rather confused. -- View this message in context: http://www.nabble.com/Explaination-of-Ajax-in-Wicket-tp22589797p22592233.html

Re: How can I share text resources with multiple web applications?

2009-03-19 Thread James Carman
It also adds a resources specification to fix it. On Wed, Mar 18, 2009 at 10:36 PM, Brill Pappin br...@pappin.ca wrote: With Maven, non compiled files should be in src/main/resources The quickstart archetype actually does the *wrong* thing and puts them in with the java files. - Brill

Update DropDownChoice with ModalWindow

2009-03-19 Thread PDiefent
Hi, In my panel I have a DropDownChoice with names. An AjaxLink opens a ModalWindow where I can enter a new name. After submitting the modal window, the new name is stored in the database and the new entry is added to the DropDownChoice contents. All this works fine, but one problem remains: The

drag and drop

2009-03-19 Thread tbt
Hi I am a newbie to wicket and I want to create a page where images can be dragged and dropped. I had a look at wicketstuff-scriptaculous and downloaded the jar file but it is not compatible with wicket 1.3.2. Can someone provide me the link so that I can download the jar file straight away

Re: drag and drop

2009-03-19 Thread Eike
hi, I used one of http://wicketstuff.org/maven/repository/org/wicketstuff/wicketstuff-scriptaculous/1.3-SNAPSHOT/ successfully with wicket 1.3.5. example code is provided in 1.4, this helps getting startet

Re: Wicket:enclosure does not work with navigation toolbar of data table

2009-03-19 Thread Leszek Gawron
Robin Shine wrote: Hi All, It seems that the navigation toolbar of data table component can not be displayed if there is a link on the page surrounded with the wicket:enclosure tag. Here is my very simple test case: TestPage.html: html xmlns=http://www.w3.org/1999/xhtml; head meta

Re: Extensible wicket application

2009-03-19 Thread Daniel Dominik Holúbek
Well, now I have tried to run it in eclipse and it is running properly. On Wed, Mar 18, 2009 at 7:21 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi Daniel, Is this the output of the console? I have no idea what's going on... I'll try to get bridge running myself with those

Re: newSession() not being called

2009-03-19 Thread Edwin Ansicodd
There is an @Override annotation on the method and it does compile and deploy. It seems almost as if the app processes each page request as a request and not as part of a session. Is there something I have to set so wicket treats requests as part of a session and not on a request by request

Re: newSession() not being called

2009-03-19 Thread James Carman
Wicket won't use a session unless it needs to. Are your pages stateless? On Mar 19, 2009 7:17 AM, Edwin Ansicodd erik.g.hau...@gmail.com wrote: There is an @Override annotation on the method and it does compile and deploy. It seems almost as if the app processes each page request as a request

Re: newSession() not being called

2009-03-19 Thread Johan Compagner
which one do you override? On Wed, Mar 18, 2009 at 18:42, Edwin Ansicodd erik.g.hau...@gmail.comwrote: have a SpringWebApplication with overridden newSession, but for some reason newSession is not being called. Have closed browsers and started new browsers, authenticating, but newSession in

Re: using jquery with wicket

2009-03-19 Thread Anton Veretennikov
As you told about blockUI. There is Jquery integration from WicketStuff. You need to add dependency groupIdorg.wicketstuff/groupId artifactIdwicketstuff-jquery/artifactId version1.4-SNAPSHOT/version /dependency to your pom.xml Then create

Re: newSession() not being called

2009-03-19 Thread Anton Veretennikov
May be your web.xml have wrong WicketApplication attached? filter filter-namewicket.FILTERNAME/filter-name filter-classorg.apache.wicket.protocol.http.WicketFilter/filter-class init-param

Re: using jquery with wicket

2009-03-19 Thread fachhoch
please suggest me on what changes should i make to Veil component in wicketstuff-minis to use it as a mask or block my page ? igor.vaynberg wrote: see the Veil component in wicketstuff-minis project, that should give you all the clues you need. -ig On Tue, Mar 17, 2009 at 12:57 PM,

Re: Update DropDownChoice with ModalWindow

2009-03-19 Thread Adriano dos Santos Fernandes
PDiefent escreveu: Hi, In my panel I have a DropDownChoice with names. An AjaxLink opens a ModalWindow where I can enter a new name. After submitting the modal window, the new name is stored in the database and the new entry is added to the DropDownChoice contents. All this works fine, but one

Wicket WebBeans Project...

2009-03-19 Thread James Carman
All, I've run into a problem. I'd like to start up a project to integrate the new WebBeans Specification (JSR-299) based on the Apache OpenWebBeans project (http://incubator.apache.org/openwebbeans/1.0.0-SNAPSHOT/index.html) in the Apache Incubator. Unfortunately, there already exists a project

Re: using jquery with wicket

2009-03-19 Thread fachhoch
This is great explanation thank you , I am looking more to create something like org.apache.wicket.extensions.ajax.markup.html.WicketAjaxIndicatorAppender . I am trying to do something likeIndicatingAjaxLink to AjaxFallbackDefaultDataTable and trying follow whats in

Dynamic Tabbedpanel Page

2009-03-19 Thread dyolf.knip
HI, I have a object with many properties(fields) which i want to display in my page. I want to organize them in tabs for clarity i look the examples for Tabbed Panel but they all are too static. If you want to add new tab you have to add pageName$panelName mark-up file for each new tab. What is

Re: using jquery with wicket

2009-03-19 Thread Anton Veretennikov
I'm a novice. It will be good to be added automatically to all ajax links like suggested on blockUI site: $().ajaxStart($.blockUI).ajaxStop($.unblockUI); @Override protected CharSequence getOnReadyScript() { return $().ajaxStart($.blockUI).ajaxStop($.unblockUI); } But

Re: Wicket WebBeans Project...

2009-03-19 Thread Leszek Gawron
James Carman wrote: All, I've run into a problem. I'd like to start up a project to integrate the new WebBeans Specification (JSR-299) based on the Apache OpenWebBeans project (http://incubator.apache.org/openwebbeans/1.0.0-SNAPSHOT/index.html) in the Apache Incubator. Unfortunately, there

Re: Wicket WebBeans Project...

2009-03-19 Thread James Carman
On Thu, Mar 19, 2009 at 10:53 AM, Leszek Gawron lgaw...@apache.org wrote: you could call it wicket-jsr299, but that might be a little bit too cryptic for some users... I'd rather not. If someone wants to know can I use webbeans with Wicket?, I think it would be more obvious if they saw a

Re: Wicket WebBeans Project...

2009-03-19 Thread Jeremy Thomerson
If the original WWB project isn't active - I don't think it would be a problem to take over the name. If there is a problem with doing that, what about wicket-openwebbeans? Or, in wicketstuff-core, we have removed the wicket- from all names because it was redundant. Make your groupId

Re: Wicket WebBeans Project...

2009-03-19 Thread James Carman
On Thu, Mar 19, 2009 at 11:01 AM, Jeremy Thomerson jer...@wickettraining.com wrote: If the original WWB project isn't active - I don't think it would be a problem to take over the name. If there is a problem with doing that, what about wicket-openwebbeans? OpenWebBeans is the name of the

Re: Dynamic Tabbedpanel Page

2009-03-19 Thread Anton Veretennikov
All tabs may be instances of the same class. If you can make it universal - make a loop of your fields (and of markup) and provide a model for them that will look for exact fields for values. -- Tony On Thu, Mar 19, 2009 at 9:34 PM, dyolf.knip manig...@gmail.com wrote: HI, I have a object

Re: Wicket:enclosure does not work with navigation toolbar of data table

2009-03-19 Thread Anton Veretennikov
wicket:enclosure must have child attribute to know which child component to ask about visibility? Example: wicket:enclosure child=name trthFirst/thtd wicket:id=first/td/tr trthLast/thtd wicket:id=last/td/tr /wicket:enclosure -- Tony On Thu, Mar 19, 2009

AjaxSelfUpdatingTimerBehavior Once

2009-03-19 Thread Heidi Burn
Hi, guys, I code AjaxSelfUpdatingTimerBehavior with isTemporary() {return true;}. After being called once I get ERROR - RequestCycle   - java.lang.NullPointerException     at org.apache.wicket.request.

Re: Wicket WebBeans Project...

2009-03-19 Thread Martin Grotzke
On Thu, 2009-03-19 at 10:01 -0500, Jeremy Thomerson wrote: If the original WWB project isn't active - I don't think it would be a problem to take over the name. If there is a problem with doing that, what about wicket-openwebbeans? Or, in wicketstuff-core, we have removed the wicket- from

Re: Wicket WebBeans Project...

2009-03-19 Thread James Carman
On Thu, Mar 19, 2009 at 11:51 AM, Martin Grotzke martin.grot...@javakaffee.de wrote: Just for consideration: this would create a jar like webbeans-1.4.jar which would be confusing... Right, that's why I stuck with wicket-webbeans. :)

Re: Wicket WebBeans Project...

2009-03-19 Thread Martin Grotzke
On Thu, 2009-03-19 at 11:53 -0400, James Carman wrote: On Thu, Mar 19, 2009 at 11:51 AM, Martin Grotzke martin.grot...@javakaffee.de wrote: Just for consideration: this would create a jar like webbeans-1.4.jar which would be confusing... Right, that's why I stuck with wicket-webbeans. :)

Re: AjaxSelfUpdatingTimerBehavior Once

2009-03-19 Thread Kevin Logue
signature database 3948 (20090319) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: using jquery with wicket

2009-03-19 Thread fachhoch
I can do this for a link as you say but how to add this behaviour for org.apache.wicket.extensions.ajax.markup.html.repeater.data.table.AjaxFallbackDefaultDataTable, in this component all the links are hidden , they are the table columns headers , I dont have access to them , how can i add

Re: Wicket WebBeans Project...

2009-03-19 Thread Dan Syrstad
The Wicket Web Beans project (wicketwebbeans) is active, but it has nothing to do with the Web Beans JSR. Whatever name you choose is fine by me, but you probably want to prevent confusion. I'd say having two projects or two jars both with webbeans in the name would be confusing. Is that JSR

Re: Wicket WebBeans Project...

2009-03-19 Thread James Carman
On Thu, Mar 19, 2009 at 12:43 PM, Dan Syrstad dsyrs...@ener-j.org wrote: Is that JSR still kicking? I would think so. The OpenWebBeans project is active. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: Wicket WebBeans Project...

2009-03-19 Thread dtoffe
Leszek Gawron-2 wrote: Is wicketwebbeans project active currently? It looks like it's still using wicket 1.3... -- Leszek Gawron It's active, the project admin has been very busy but there are some other people interested. There's a plan to release WWB 1.1 (still for W

Re: newSession() not being called

2009-03-19 Thread Edwin Ansicodd
How can I tell if my pages are stateless or not? They have forms on them. I am using links in the format : BookmarkablePageLink(InfoPageLink, InfoPage.class)); and setResponsePage in the format: setResponsePage( new BlattPage( pp) ); jwcarman wrote: Wicket won't use a session

Re: Wicket WebBeans Project...

2009-03-19 Thread jWeekend
James, That's some coincidence - I just tried to register the same name at Google code earlier today for the wicketwebbeans folks (they're currently on SourceForge) in case we want to migrate there because Google code seems to be more responsive and cleaner. I've been talking to Dan ad Daniel

Wicket Portlets in WebLogic Portal?

2009-03-19 Thread jakewicket
Hello, I'm trying to use Apache Wicket components as portlets within WebLogic Portal, and am wondering if this configuration is supported. I found the Portal HowTo page for Wicket which discusses this a little bit (http://cwiki.apache.org/WICKET/portal-howto.html), but this seems to be centered

Re: How can I share text resources with multiple web applications?

2009-03-19 Thread Brill Pappin
I understand why you do it, and don't even think its such a bad thing (it's a very agile like approach), however I prefer them separate as a means to keep any individual package clean and orderly as the two parts really do serve different purposes and except initially, are maintained at

Re: How can I share text resources with multiple web applications?

2009-03-19 Thread Brill Pappin
Yes I know, and I have to undo all its extra crap and move the files to the right place every time... Its annoying enough that I don't really use it any more because it takes twice as long to get things back to were they should be than it does to just create the darn module. - brill On

Re: How can I share text resources with multiple web applications?

2009-03-19 Thread Jeremy Thomerson
On the subject of the archetype though, it *should* be doing the maven standard thing by default... maybe offering you a choice but the default should be into the resources directory. Why should the *wicket* archetype be doing the *maven* standard thing? This is the wicket standard way of

Re: Update DropDownChoice with ModalWindow

2009-03-19 Thread Adriano dos Santos Fernandes
PDiefent escreveu: Adriano, I don't know what you mean. In my point of view the LoadableDetachableModel representing the list with the names is updated, but the property model representing the actual name not. I'm using target.addComponent(nameDropDown) in the setWindowClosedCallback() method

Re: Extensible wicket application

2009-03-19 Thread Ernesto Reinaldo Barreiro
I couldn't try today to build the example using servlet bridge, to busy over here;-), let me see if I can find some time tomorrow to get it working. But normally what I would do is use eclipse for development and then export the jar to a bridge/plugins for deployment... Did you read this page

Re: Wicket WebBeans Project...

2009-03-19 Thread Martijn Dashorst
I just overheard that webbeans (the spec) has been renamed: http://www.jroller.com/Solomon/entry/it_s_official_web_beans On Thu, Mar 19, 2009 at 3:12 PM, James Carman ja...@carmanconsulting.com wrote: All, I've run into a problem.  I'd like to start up a project to integrate the new WebBeans

Re: Wicket WebBeans Project...

2009-03-19 Thread Martijn Dashorst
http://in.relation.to/Bloggers/RevisedPublicDraftOfJSR299JavaContextsAndDependencyInjection So now we'll have to come up with another name: wicket-jcadi, wicket-cadi, wicket-candi ? Martijn On Thu, Mar 19, 2009 at 9:01 PM, Martijn Dashorst martijn.dasho...@gmail.com wrote: I just overheard

Re: Wicket WebBeans Project...

2009-03-19 Thread Jeremy Thomerson
Awesome! Now we can have: groupId: org.apache.wicket artifactId: wicket-java-contexts-and-dependency-injection Just think of the convenient package naming: org.apache.wicket.extensions.java-contexts-and-dependency-injection.foo.bar :) -- Jeremy Thomerson http://www.wickettraining.com On

Re: Wicket WebBeans Project...

2009-03-19 Thread James Carman
I want candi! I like it. On Thu, Mar 19, 2009 at 4:04 PM, Martijn Dashorst martijn.dasho...@gmail.com wrote: http://in.relation.to/Bloggers/RevisedPublicDraftOfJSR299JavaContextsAndDependencyInjection So now we'll have to come up with another name: wicket-jcadi, wicket-cadi, wicket-candi ?

Re: Extensible wicket application

2009-03-19 Thread Daniel Dominik Holúbek
Yes, that's exactly what I did :) I checked out the bundles, then exported them from eclipse. And then installed those bundles along with javax.servlet into the bridge application, bud I got the error when I tried to install wstarter-demo. Thanks a lot! On Thu, Mar 19, 2009 at 8:28 PM, Ernesto

PageExpiredException problems

2009-03-19 Thread novotny
Hi, Our log file in production is showing a lot of these type errors: org.apache.wicket.protocol.http.PageExpiredException: Cannot find the rendered page in session [pagemap=null,componentPath=1,versionNumber=0] at

Re: PageExpiredException problems

2009-03-19 Thread Jeremy Thomerson
Search the archives and you will find many reasons for this to happen. Are you getting serialization errors in your logs? -- Jeremy Thomerson http://www.wickettraining.com On Thu, Mar 19, 2009 at 3:25 PM, novotny novo...@gridsphere.org wrote: Hi, Our log file in production is showing a

Re: drag and drop

2009-03-19 Thread Ernesto Reinaldo Barreiro
I would use YUI drag and drop instead of scriptaculous. I was using scriptaculous for that purpose, I just implemented a table with draggable columns, but I had some issues with AJAX updates on IE: after first page reload draggables stoped to work because dropables had to be removed/recreated.

Re: Extensible wicket application

2009-03-19 Thread Ernesto Reinaldo Barreiro
Did you exported them how? As equinox jar files or as simple jar files? Let me see if tomorrow I find some time for trying this out myself... Best, Ernesto On Thu, Mar 19, 2009 at 9:14 PM, Daniel Dominik Holúbek dankodo...@gmail.com wrote: Yes, that's exactly what I did :) I checked out

Re: Disable or hide tabs in AjaxTabbedpanel

2009-03-19 Thread Mathias P.W Nilsson
When hiding the link and the panel the li elements is still visible. -- View this message in context: http://www.nabble.com/Disable-or-hide-tabs-in-AjaxTabbedpanel-tp22585946p22608409.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: newSession() not being called

2009-03-19 Thread Igor Vaynberg
a session object is created for every request, stateless or not. for stateless requests the session object is not put into the permanent session store (httpsession usually) - that is the difference. -igor On Thu, Mar 19, 2009 at 4:38 AM, James Carman ja...@carmanconsulting.com wrote: Wicket

Re: Wicket WebBeans Project...

2009-03-19 Thread Dan Syrstad
+1 for wicket-candi !! ;-)

RE: drag and drop

2009-03-19 Thread Stefan Lindner
It is still there. I had massive problems with updating dropable items in a table with ajax. -Ursprüngliche Nachricht- Von: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com] Gesendet: Donnerstag, 19. März 2009 21:31 An: users@wicket.apache.org Betreff: Re: drag and drop I would use

Re: PageExpiredException problems

2009-03-19 Thread novotny
Hi Jeremy, I'm not seeing any serialization errors in my logs... I couldn't find anything useful when I searched the archives, although I did see some stuff regarding this error that could be ajax related. I guess the first step would be to figure out which URLs could be triggering this

Re: PageExpiredException problems

2009-03-19 Thread Jeremy Thomerson
So you can not reproduce it in your test environment? Look in your http logs and see if the urls that are returning 50X codes mostly have a search bot user agent. If you have a public facing site that is scraped by Google, et al, you will see these errors because they do not maintain a session,

Wicket tests without FormTester

2009-03-19 Thread alexander.elsholz
Hi, exists a possibility to test, for example a dropdownchoice without formtester? my ddc isn't placed on a form, so i actually don't know how to test this component - how can i simulate the userinput? i don't want to put this component i a form, only for test. the value is updated via

oxford scholarship university

2009-03-19 Thread Steve Poepoe
http://3.m20a.dontexist.org/50k3b3ki23a.html singapore scholarship application with ib grades http://2.m20a.doesntexist.org/2289afefcdd0.html aviation scholarships grants http://3.m20a.dontexist.net/c2087e1j98.html scholarships for college in arizona

Info sobre el Softphone en Xubuntu

2009-03-19 Thread JaviR
Sabes, hize lo que dices para poder hacer funcionar el softphone en linux, tengo Xubuntu, estoy usando crossover que es en base a wine emulando el vista, pero al hacer la llamada me dice que hay un fallo en la negociacion cuando contestan la llamada, me puedes ayudar porfa. -- View this message

Re: Wicket:enclosure does not work with navigation toolbar of data table

2009-03-19 Thread Robin Shine
Thanks for the answer. This is just a simple test case to demonstrate the problem. In the real case, I have surrounding tags around the link, which needs to be hidden as long as the link is hidden. I will go to file an issue. Regards Robin --- On Thu, 3/19/09, Leszek Gawron

Re: Wicket:enclosure does not work with navigation toolbar of data table

2009-03-19 Thread Robin Shine
Hi Anton, The enclosure tag does not need to have a child attribute if there is only one child enclosed. OTOH, the problem remains the same even if you add the child attribute. Regards Robin --- On Thu, 3/19/09, Anton Veretennikov anton.veretenni...@gmail.com wrote: From: Anton

Re: How can I share text resources with multiple web applications?

2009-03-19 Thread Brill Pappin
It's a Maven archetype is it not? - Brill On 19-Mar-09, at 3:22 PM, Jeremy Thomerson wrote: On the subject of the archetype though, it *should* be doing the maven standard thing by default... maybe offering you a choice but the default should be into the resources directory. Why

Re: Wicket:enclosure does not work with navigation toolbar of data table

2009-03-19 Thread Anton Veretennikov
Thank you for the tip! I thought that wicket was confused what to hide. -- Tony On Fri, Mar 20, 2009 at 7:19 AM, Robin Shine ro...@pmease.com wrote: Hi Anton, The enclosure tag does not need to have a child attribute if there is only one child enclosed. OTOH, the problem remains the same

Re: How to dynamically generate HTML page?

2009-03-19 Thread vasya10
I am totally new to Wicket. I hit upon this thread while trying to look for a solution for the exact problem described by Penn. We have an xml which contains data and html type elements (text, radiobutton etc) which we have to dynamically convert to a html page and bind to server side variables.

Re: How can I share text resources with multiple web applications?

2009-03-19 Thread Jeremy Thomerson
It's a *wicket* archetype that uses Maven as a build tool. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Mar 19, 2009 at 8:30 PM, Brill Pappin br...@pappin.ca wrote: It's a Maven archetype is it not? - Brill On 19-Mar-09, at 3:22 PM, Jeremy Thomerson wrote: On the

Re: model for entity with checkgroup (user roles relation)

2009-03-19 Thread Timo Rantalaiho
On Sat, 07 Mar 2009, Francisco Diaz Trepat - gmail wrote: I would like to have a form with a checkgroup to be able to select which roles a user have. I would have CheckBoxes with IModelBoolean bound to each role so that they would do @Override public Boolean getObject() { return

Re: Wicket tests without FormTester

2009-03-19 Thread Martin Makundi
Hi! You can call the following for your dropdowndown component: wicketTester.getServletRequest().setParameter(dropDownComponent.getInputName(), value); .. and then call wiketTester.executeAjaxEvent(dropDownComponent, onchange); ** Martin 2009/3/20 alexander.elsholz

Re: Extensible wicket application

2009-03-19 Thread Daniel Dominik Holúbek
Right click - Export - Plugin development - Deployable plug-ins and fragments Have a nice day :) On Thu, Mar 19, 2009 at 9:32 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Did you exported them how? As equinox jar files or as simple jar files? Let me see if tomorrow I find some time