Re: drag and drop

2009-03-19 Thread Ernesto Reinaldo Barreiro
Yep! I abandoned it because I hat to remove all Droppables associated with my component before any AJAX round trip that updated the component. This was a nightmare because that component could be embedded into others components that would refresh using AJAX, so the whole setting was very fragile..

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 som

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 : > > Hi, > > exists a po

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 IModel bound to each role so that they would do @Override public Boolean getObject() { return user.hasRo

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 wrote: > It's a Maven archetype is it not? > > - Brill > > > On 19-Mar-09, at 3:22 PM, Jeremy Thomerson wrote: > > >>> >>> On the subject

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. N

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 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 even if you add

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 shou

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 wrote: From: Anton Veretennikov Subject: Re: Wicket:enclos

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 wrote: From: Le

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

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 http://3.m20a.dontexist.com/2289afefcii3.html

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 ajax-onch

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, b

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 behavior.

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: Wicket WebBeans Project...

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

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 wrote: > Wicket won't use a session unless it

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: 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 ou

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. Ther

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 wrote: > > > Hi, > > Our log file in production is showing a lot of these type

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 org.apache.wicket.protocol.http.WebRequestCycleProcessor.resolve(WebRequ

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 Re

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 wrote: > 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,

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 Thu

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 wrote: > I just overheard that webbeans (the spec) has

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 wrote: > All, > > I've run into a problem.  I'd like to start up a project to integrate > the new WebBeans Specification (JSR-299)

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 htt

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 and

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 wa

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

2009-03-19 Thread James Carman
On Thu, Mar 19, 2009 at 3:11 PM, Brill Pappin 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. I didn't like it at first, being a maven user, but it

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 19-

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 dif

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: 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 fo

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 un

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

Re: Wicket WebBeans Project...

2009-03-19 Thread James Carman
On Thu, Mar 19, 2009 at 12:43 PM, Dan Syrstad 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 additional commands, e-

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 sti

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 th

Re: AjaxSelfUpdatingTimerBehavior Once

2009-03-19 Thread Kevin Logue
virus 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: us

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 > 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. :) (Y) :) > >

Re: Wicket WebBeans Project...

2009-03-19 Thread James Carman
On Thu, Mar 19, 2009 at 11:51 AM, Martin Grotzke 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. :) - To unsubscribe

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-

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. target.component.listener.BehaviorRequestTarget.processEvents(BehaviorRequestTa

Re: Update DropDownChoice with ModalWindow

2009-03-19 Thread PDiefent
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 and I'm setting the act

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: First Last -- Tony On Thu, Mar 19, 2009 at 4:04 PM, Leszek Gawron wrote: > Robin Shine wrote: >> >> Hi All, >> It seems that the navigation tool

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 wrote: > > HI, > I have a object with many propertie

Re: Wicket WebBeans Project...

2009-03-19 Thread James Carman
On Thu, Mar 19, 2009 at 11:01 AM, 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? OpenWebBeans is the name of the implementation project at

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 "org.wick

Re: Wicket WebBeans Project...

2009-03-19 Thread James Carman
On Thu, Mar 19, 2009 at 10:53 AM, Leszek Gawron 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 wicket-webbeans pr

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 alr

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

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 th

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 IndicatingAja

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: 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 pr

Re: newSession() not being called

2009-03-19 Thread Anton Veretennikov
May be your web.xml have wrong WicketApplication attached? wicket.FILTERNAME org.apache.wicket.protocol.http.WicketFilter applicationClassName *YOUR WicketApplication

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 org.wicketstuff wicketstuff-jquery 1.4-SNAPSHOT to your pom.xml Then create behaviour that will add JavaScript on demand: public class BlockerBehaviour ext

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

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 wrote: > > 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 the WebApplication

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" 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 and not as part of a

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 basi

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: 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: http://www.w3.org/1999/xhtml";> link TestPage.java:

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 http://wicketstuff.org/maven/repository/org/wicketstuff/scriptaculous-examples/1.4-SNAP

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 which

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 n