Re: wicket pages as spring beans to utilize spring aop

2008-12-12 Thread Jeremy Thomerson
RE: ThreadLocal - NO! And don't do this Setting the response page (with redirect) is going to send a response to the browser that tells it to redirect to the new page. Then your response is closed - meaning that the servlet container is done using that thread for that user, and will use it t

Stateless form action in Wicket

2008-12-12 Thread Vinayak Borkar
Hello, I am creating a page (say Page A) that contains a stateless form. The stateless form's action leads to page B. I observe that in Wicket, the form action is created so that the request is sent back to Page A (An instance of Page A is created when the form is submitted) and then it redi

RE: [OT] wicket users around the world

2008-12-12 Thread Anirban Basak
1st Indian to reply so um, Kolkata, India! Hope I'm not the only one using Wicket in India :) Warm Regards, Anirban Basak Ph : 91 33 2357 7177 Extn: 277 -Original Message- From: francisco treacy [mailto:francisco.tre...@gmail.com] Sent: Friday, December 12, 2008 12:28 AM To: users@

Re: SpringBeanLocator and @SpringBean performance issue

2008-12-12 Thread Igor Vaynberg
thanks for keeping us informed. like i said, if it takes too long we can build a temp cache into wicket. -igor On Fri, Dec 12, 2008 at 4:21 PM, leok wrote: > > I went ahead and filed a bug with the Spring people: > http://jira.springframework.org/browse/SPR-5360 > > > igor.vaynberg wrote: >> >>

Re: SpringBeanLocator and @SpringBean performance issue

2008-12-12 Thread leok
I went ahead and filed a bug with the Spring people: http://jira.springframework.org/browse/SPR-5360 igor.vaynberg wrote: > > as far as i can see the problem is "on the other side of the fence". > applicationcontext has much better metadata about its beans then we do > so it should be cached th

Re: extra 'onclick' is generated for an image wrapped by a link

2008-12-12 Thread Igor Vaynberg
see page mounting -igor On Fri, Dec 12, 2008 at 3:12 PM, Trent Larson wrote: > BTW, I don't want our UI team to have to add a component every time they add > a link, so I'll try to avoid Wicket links altogether and have them use raw > links like "?wicket:bookmarkablePage=:Page" (or maybe pla

Re: extra 'onclick' is generated for an image wrapped by a link

2008-12-12 Thread Trent Larson
BTW, I don't want our UI team to have to add a component every time they add a link, so I'll try to avoid Wicket links altogether and have them use raw links like "?wicket:bookmarkablePage=:Page" (or maybe play with URL mounting). On Fri, Dec 12, 2008 at 11:23 AM, Igor Vaynberg wrote: > do

Re: What are your suggestions to ease separation of UI and dev teams?

2008-12-12 Thread James Carman
I wouldn't use the "bookmarkablePage=" syntax. I'd mount my pages. On Fri, Dec 12, 2008 at 5:48 PM, Trent Larson wrote: > Please help (documentation references, etc) with good ways to work with > Wicket where we have separate UI and dev teams. I'm looking for any > practices people have found h

What are your suggestions to ease separation of UI and dev teams?

2008-12-12 Thread Trent Larson
Please help (documentation references, etc) with good ways to work with Wicket where we have separate UI and dev teams. I'm looking for any practices people have found helpful because of the UI surprises we keep hitting. For example, our UI group has been inserting graphics and regular links betw

No WebApplicationContext found: no ContextLoaderListener registered?

2008-12-12 Thread wicketworker
I am getting the following exception while starting my jetty server : java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered? at org.springframework.web.context.support.WebApplicationContextUtils.getRequiredWebApplicationContext(WebApplicatio

Re: extra 'onclick' is generated for an image wrapped by a link

2008-12-12 Thread Trent Larson
OK. Thanks. And thanks for the quick response! I appreciate how responsive this mailing list has been. On Fri, Dec 12, 2008 at 11:23 AM, Igor Vaynberg wrote: > dont use wicket:link, use bookmarkablepagelink component instead. > > -igor > > On Fri, Dec 12, 2008 at 10:19 AM, Trent Larson > wr

Re: What is your experience on the time of development ?

2008-12-12 Thread Jason Lea
Our company started with Tapestry 5 last year. Early this year we had the chance for the team to try Wicket after getting frustrated with Tapestry. I wrote a small comment here about it: http://www.theserverside.com/news/thread.tss?thread_id=50634#268364 Tapestry 5 seemed to be fast due to t

Re: wicket pages as spring beans to utilize spring aop

2008-12-12 Thread miro
Yes its the same problem I resolved it with the suggestion you pointed aspectJ.I am using aspectJ compiler to introduce some meta information to my pages, the only reason I donot want to have super class is the ability to swap a class use it or not with least changes and in my case just an a

Re: how to reuse a label in the same page?

2008-12-12 Thread Igor Vaynberg
really? and here i thought i was using the response from iheadercontributor which is the preferred way of writing out javascript. and no we cannot get all references because we do not know the markup until after first render. -igor On Fri, Dec 12, 2008 at 11:06 AM, Bruno Cesar Borges wrote: > J

Re: IOptionRenderer vs IChioceRenderer in Wicket 1.4M1

2008-12-12 Thread Igor Vaynberg
open a jira issue please -igor On Fri, Dec 12, 2008 at 10:37 AM, Stefan Lindner wrote: > The definition of IOptionRenderer is > >Interface IOptionRenderer >java.lang.String getDisplayValue(java.lang.Object > object) > > the definition of IChoiceRenderer is > >Inte

RE: how to reuse a label in the same page?

2008-12-12 Thread Bruno Cesar Borges
Javascript could get all child references to that component (markupId), and apply that code to them as well. In this case you submitted, the problem would be only with reaaally hacked code, like doing weird stuff with 'response' instead of using Behaviours. -Original Message- From: Igo

Re: Setting a relevant value for radio buttons without using RadioChoice

2008-12-12 Thread Michael O'Cleirigh
Hi Nino, I believe that this is not what Archie asked about, he wanted to place database id's in the value of the radios.. Dont know why he wanted to though... I might have gotten it wrongly though.. You're right that he wanted to use the database id but from his example there didn't seem

Re: What is your experience on the time of development ?

2008-12-12 Thread Marcelo Morales
Hello I worked on a JSF project last year. This year I worked on a wicket project. Both were approximately the same size and complexity. Granted. You learn from experience. The second time around you do something (or something quite similar), you do it much, much better. AND I had previous experi

Re: how to reuse a label in the same page?

2008-12-12 Thread Igor Vaynberg
huh? so if i have a behavior that does: response.write("getElementById('"+getMarkupId()+"').style.display='none';"); how does that work??? -igor On Fri, Dec 12, 2008 at 10:38 AM, Bruno Cesar Borges wrote: > It could continue to return "foo". But when processing ajax responses, > wicket:ref wi

Re: DropDownChoice with Model for data and HashMap of key/values

2008-12-12 Thread Igor Vaynberg
that map needs to be in the choicerenderer. your domain model type is integer, ddc looks like this: dropdownchoice(string id, imodel model, imodel> choices, ichoicerenderer renderer) -igor On Fri, Dec 12, 2008 at 10:36 AM, Steve Swinsburg wrote: > Thanks. > I now have this: > > IModel dropDownM

RE: how to reuse a label in the same page?

2008-12-12 Thread Bruno Cesar Borges
One more thing: the Server-side will not know about "foo1" (references to 'foo'). Instead, this would be controled from the javascript, client-side. -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Friday, December 12, 2008 4:35 PM To: users@wicket.apache.org

RE: how to reuse a label in the same page?

2008-12-12 Thread Bruno Cesar Borges
It could continue to return "foo". But when processing ajax responses, wicket:ref will register, through Javascript, the references to "foo", somehow. So this approach wouldn't break any code. -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Friday, December

IOptionRenderer vs IChioceRenderer in Wicket 1.4M1

2008-12-12 Thread Stefan Lindner
The definition of IOptionRenderer is Interface IOptionRenderer java.lang.String getDisplayValue(java.lang.Object object) the definition of IChoiceRenderer is Interface IChoiceRenderer java.lang.Object getDisplayValue(T object) Why is the param

Re: DropDownChoice with Model for data and HashMap of key/values

2008-12-12 Thread Steve Swinsburg
Thanks. I now have this: IModel dropDownModel = new Model() { protected Object load() { preferences.put(0, "some choice"); preferences.put(1, "some other choice"); preferences.put(2

Re: how to reuse a label in the same page?

2008-12-12 Thread Igor Vaynberg
what do we return from getmarkupid() because that is what the code uses to output that markupid for the javascript that needs to manipulate the dom nodes. -igor On Fri, Dec 12, 2008 at 10:28 AM, Bruno Cesar Borges wrote: > I'm pretty sure it is possible to register all markup IDs generated to >

RE: how to reuse a label in the same page?

2008-12-12 Thread Bruno Cesar Borges
I'm pretty sure it is possible to register all markup IDs generated to referenced nodes. new Label("foo", "Foo"); ddd again outputs: Foo Foo Then it would be possible to do, for instance, an Ajax update over all nodes. -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gma

Re: extra 'onclick' is generated for an image wrapped by a link

2008-12-12 Thread Igor Vaynberg
dont use wicket:link, use bookmarkablepagelink component instead. -igor On Fri, Dec 12, 2008 at 10:19 AM, Trent Larson wrote: > I have the following plain HTML where I want an image to be a link to > another Wicket-managed page: > > src="../images/products_welcome.jpg" border="0"> > > > The lin

extra 'onclick' is generated for an image wrapped by a link

2008-12-12 Thread Trent Larson
I have the following plain HTML where I want an image to be a link to another Wicket-managed page: The link for that page is generated fine, but then Wicket adds an 'onclick' event to the 'img' tag that takes the user directly to the image: This seems absolutely wrong. The result is that a

Re: DropDownChoice with Model for data and HashMap of key/values

2008-12-12 Thread Igor Vaynberg
new ichoicerenderer() { Object getDisplayValue(integer object) { return choices.get((integer)object); } String getIdValue(integer object, int index) { return object.tostring(); } } -igor On Fri, Dec 12, 2008 at 9:46 AM, Steve Swinsburg wrote: > > Hi all, > > I've been over all the DDC exam

Re: how to reuse a label in the same page?

2008-12-12 Thread Igor Vaynberg
what happens once you add a behavior that uses markup id? or even call setoutputmarkupid(true) on that component? -igor On Fri, Dec 12, 2008 at 9:35 AM, Jeremy Thomerson wrote: > Oops - you are right there - the component use check was turned off in this > app (I just threw the example into an e

Re: Setting a relevant value for radio buttons without using RadioChoice

2008-12-12 Thread Nino Saturnino Martinez Vazquez Wael
Hi Michael I believe that this is not what Archie asked about, he wanted to place database id's in the value of the radios.. Dont know why he wanted to though... I might have gotten it wrongly though.. regards Nino Michael O'Cleirigh wrote: Hi ArchieC, The way RadioGroup works is that it r

DropDownChoice with Model for data and HashMap of key/values

2008-12-12 Thread Steve Swinsburg
Hi all, I've been over all the DDC examples but am still stumped by this one. I have a model (pojo) which holds user preferences, the preference for each item being an Integer. ie public class UserPreferences { int preferenceOne; int preferenceTwo constructor getters and setters for the

RE: how to reuse a label in the same page?

2008-12-12 Thread Bruno Cesar Borges
Really, if we think about the DOM tree and XMLs, we'll see that it is possible to put some information in different places, but that information is declared only once. Wicket works with XHTML (XML over HTML). So why not support this? If one decides to refer to a component declared in another pi

Re: how to reuse a label in the same page?

2008-12-12 Thread Jeremy Thomerson
Oops - you are right there - the component use check was turned off in this app (I just threw the example into an existing app to test it). While I don't typically use this, or have this use case, I'm not clear on what is "fundamentally wrong" with this - you have a component you want two places i

Re: how to reuse a label in the same page?

2008-12-12 Thread Martijn Dashorst
Now run your application in virgin development mode. The fact that we disable the component use check in production mode doesn't make it less evil. Martijn On Fri, Dec 12, 2008 at 5:56 PM, Jeremy Thomerson wrote: > Martijn, > Actually, what I described does work - try this on any page: > > JAVA

Ajax response not completed

2008-12-12 Thread Emanuele Gesuato
Hi there, I'm sorry for sending two email the same day, but i've got a problem that is very strange for me. I'm using wicket 1.3.4 with the patch WICKET-1838 provided by Matej Knopp and i'm testing the page on firefox 3.0.4. When i click on an ajax link that generates a pdf, the file correct

Re: CryptedUrlWebRequestCodingStrategy/Session invalidate with Wicket 1.3.5

2008-12-12 Thread francisco treacy
have a look and see if "Problem with Crypted URL" thread helps. francisco On Fri, Dec 12, 2008 at 12:12 AM, Timm Helbig wrote: > Hello everyone, > > For logout from the Application I use the following Code. > >getSession().invalidate(); >setResponsePage(LoginPage.class); >

Re: NPE when embedding

2008-12-12 Thread Jeremy Thomerson
Good catch - I just did it since I still had them open. On Fri, Dec 12, 2008 at 11:07 AM, James Carman wrote: > I would also link the issues > > On Fri, Dec 12, 2008 at 12:02 PM, Jeremy Thomerson > wrote: > > Your ticket is already in JIRA as > > https://issues.apache.org/jira/browse/WICKET-151

Re: SpringBeanLocator and @SpringBean performance issue

2008-12-12 Thread leok
No, there's no rush here. We're able to hack around the problem effectively in our own code. Thanks for your response! leo igor.vaynberg wrote: > > as far as i can see the problem is "on the other side of the fence". > applicationcontext has much better metadata about its beans then we do > so

Re: NPE when embedding

2008-12-12 Thread James Carman
I would also link the issues On Fri, Dec 12, 2008 at 12:02 PM, Jeremy Thomerson wrote: > Your ticket is already in JIRA as > https://issues.apache.org/jira/browse/WICKET-1513 - reported in April. I > attached a patch to fix it last month. Please close the ticket you just > opened, and instead,

Re: Modify textfield input before validation

2008-12-12 Thread pixologe
That's right - but if the devs regard this as abuse, there's no guarantee that this still works in the next version. That's why I wondered what is the intended way of doing stuff like this. Obviously there is none :-/ Peter Ertl wrote: > > Just because converter can convert 'from' and 'to' doe

Re: NPE when embedding

2008-12-12 Thread Jeremy Thomerson
Your ticket is already in JIRA as https://issues.apache.org/jira/browse/WICKET-1513 - reported in April. I attached a patch to fix it last month. Please close the ticket you just opened, and instead, comment on and vote for WICKET-1513. You can also apply the patch to a locally-built Wicket if y

Re: [OT] wicket users around the world

2008-12-12 Thread francisco treacy
of course it is not "necessary", it's just a bit of "fresh air" in a technical mailing list. not a deal for me at all, because i'm using gmail that groups mails in a conversation. anyhow, fair point. we may now want to switch to frappr to express all this information... francisco On Fri, Dec 12

Re: Case sensitivity and PackageRequestTargetUrlCodingStrategy

2008-12-12 Thread Jeremy Thomerson
One other thing - I think that the contract of IClassResolver would mean that rather than returning null, you throw a ClassNotFoundException. On Fri, Dec 12, 2008 at 8:24 AM, Matthew Hanlon wrote: > Great ideas, thanks for the input. I agree on all points. My initial > implementation is certai

Re: Is wicket:extend strictly required if including entire html child?

2008-12-12 Thread Igor Vaynberg
no it is not. not including wicket:extend means the child wants to completely override the markup of the parent. -igor On Fri, Dec 12, 2008 at 5:13 AM, Antony Stubbs wrote: > > Is it possible to use markup inheritance without having to use > in the children? I'd like to be able to use MI withou

Re: how to reuse a label in the same page?

2008-12-12 Thread Jeremy Thomerson
Martijn, Actually, what I described does work - try this on any page: JAVA (added only once - since you couldn't add two with the same ID anyway): add(new Label("test", "this is a test")); HTML: [] [] OUTPUT: this is a test this is a test Right or wrong, it currently works that way. (1.4-SNAPSH

Re: Hot deployment / code swapping

2008-12-12 Thread Igor Vaynberg
wicket has never redeployed changes made to class files. this is accomplished by the jvm when the app is ran in debug mode. changes to .html and other resources such as .css are reflected if the application is launched in development mode. -igor On Thu, Dec 11, 2008 at 11:03 PM, wrote: > See Th

Re: [OT] wicket users around the world

2008-12-12 Thread Thies Edeling
Although it is quite interesting to see where everyone comes from, is this thread really necessary on an already busy mailing list ? francisco treacy wrote: to know a little bit more of our great (and vast) community, i was just wondering if you're keen on sharing where you come from and/or whe

Re: [OT] wicket users around the world

2008-12-12 Thread Tim Squires
Yorkshire, England In the last year, I've developed Wicket applications for people in Aurora, Ontario London, England Nashville, Tennessee Almaty, Kazakhstan and Harrogate, England Because of this damn interweb thingy I don't actually get to go to these places :(

Re: [OT] wicket users around the world

2008-12-12 Thread Juan Lagostena
Buenos Aires, Argentina --- El vie 12-dic-08, Uwe Schäfer escribió: > De: Uwe Schäfer > Asunto: Re: [OT] wicket users around the world > Para: users@wicket.apache.org > Fecha: viernes, 12 de diciembre de 2008, 1:23 pm > Freiburg (Breisgau), Germany > >

Re: SpringBeanLocator and @SpringBean performance issue

2008-12-12 Thread Igor Vaynberg
as far as i can see the problem is "on the other side of the fence". applicationcontext has much better metadata about its beans then we do so it should be cached there as it can be done so properly. if this is urgent we can build a temporary cache into springbeanlocator, but its not the proper th

Re: Setting a relevant value for radio buttons without using RadioChoice

2008-12-12 Thread Michael O'Cleirigh
Hi ArchieC, The way RadioGroup works is that it renders to a hidden field and stores the selected value of the selected Radio. i.e. the rendered markup is not that relevant and the model object for the selected radio will be placed into the model for the RadioGroup when the form submits. T

Re: [OT] wicket users around the world

2008-12-12 Thread Uwe Schäfer
Freiburg (Breisgau), Germany - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Setting a relevant value for radio buttons without using RadioChoice

2008-12-12 Thread Nino Saturnino Martinez Vazquez Wael
Hmm it does'nt.. And you cant even overrride getValue() on radio since it's final... :( Come it, I posted something about the fact that radio uses autoIndex once regarding jmeter.. But you can override onComponentTag, I guess I'd probably roll my own and rip most from Radio, but let it take th

Re: Setting a relevant value for radio buttons without using RadioChoice

2008-12-12 Thread ArchieC
Erm from looking at the docs, Both Radio and RadioGroup only have an Id and an IModel in their constructor unlike RadioChoice which has a choice renderer. -- View this message in context: http://www.nabble.com/Setting-a-relevant-value-for-radio-buttons-without-using-RadioChoice-tp20978297p2097

Re: Setting a relevant value for radio buttons without using RadioChoice

2008-12-12 Thread Nino Saturnino Martinez Vazquez Wael
Does'nt it use a choice renderer? ArchieC wrote: Hi All Im fairly new to wicket and Im going insane with an issue Im having. Ive been doing a trawl of many forums, Wicket in action, Pro wicket, nabble, asking questions of friendly people and trying every option I can think of to work this out f

Re: [OT] wicket users around the world

2008-12-12 Thread shetc
M...Bari -- great food! Will program Wicket for delicious Italian seafood. Bari,Italy. We're working with wicket since June :D -- View this message in context: http://www.nabble.com/-OT--wicket-users-around-the-world-tp20962108p20978365.html Sent from the Wicket - User mailing list archi

Setting a relevant value for radio buttons without using RadioChoice

2008-12-12 Thread ArchieC
Hi All Im fairly new to wicket and Im going insane with an issue Im having. Ive been doing a trawl of many forums, Wicket in action, Pro wicket, nabble, asking questions of friendly people and trying every option I can think of to work this out for myself using RadioChoice, RadioGroup and odd com

Re: [OT] wicket users around the world

2008-12-12 Thread Kevin Logue
virus, version of virus signature database 3685 (20081212) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional comman

Re: [OT] wicket users around the world

2008-12-12 Thread Edward Zarecor
Cambridge, MA -- but willing to relocate to Rome or Lisbon in a pinch ;) On Fri, Dec 12, 2008 at 9:54 AM, Steve Swinsburg wrote: > Even more off topic: > > Despite popular belief, Koala's are not bears - both are mammals but only > the Koala is a marsupial ;) > > -steve > > > > On 12 Dec 2008, at

Re: [OT] wicket users around the world

2008-12-12 Thread Anton Veretennikov
Krasnoyarsk, Russia Started http://wicket.ru Really love wicket On Fri, Dec 12, 2008 at 1:57 AM, francisco treacy < francisco.tre...@gmail.com> wrote: > to know a little bit more of our great (and vast) community, i was > just wondering if you're keen on sharing where you come from and/or > where

Re: Modify textfield input before validation

2008-12-12 Thread Peter Ertl
Just because converter can convert 'from' and 'to' doesn't mean you can't use it for one direction only Am 12.12.2008 um 13:01 schrieb pixologe: seems to be igor's point of view, at least: http://www.nabble.com/append-a-converter-or-coversion-function-td15921777.html#a15964449 Peter Ertl w

Re: [OT] wicket users around the world

2008-12-12 Thread Steve Swinsburg
Even more off topic: Despite popular belief, Koala's are not bears - both are mammals but only the Koala is a marsupial ;) -steve On 12 Dec 2008, at 14:35, trames wrote: Toledo is nowhere near Australia or Austria although I think there are some kangaroos hopping around in our great z

Re: [OT] wicket users around the world

2008-12-12 Thread Casper Bang
Work in Denmark, live in Canada (don't you just love technology?) and planning my strategy for converting my JSF-masochistic colleagues over to try Wicket. ;) /Casper Wadi Jalil Maluf wrote: Argentinians working on wicket and mobile apps integration Wadi -Mensaje original- De: N

Re: [OT] wicket users around the world

2008-12-12 Thread Paolo Di Tommaso
Paolo Di Tommaso, Roma - IT On Fri, Dec 12, 2008 at 3:40 PM, Steve Flasby wrote: > Brit (actually a Yorkshireman) working in Zürich, Switzerland. >

Re: [OT] wicket users around the world

2008-12-12 Thread Steve Flasby
Brit (actually a Yorkshireman) working in Zürich, Switzerland. francisco treacy wrote: to know a little bit more of our great (and vast) community, i was just wondering if you're keen on sharing where you come from and/or where you work with wicket... for instance, here argentinian/belgian work

Re: [OT] wicket users around the world

2008-12-12 Thread francesco dicarlo
Bari,Italy. We're working with wicket since June :D 2008/12/12 trames > > Toledo, Ohio USA Note: This is Toledo in the USA not in Spain! There is > a > city in the USA with that name. :) > > Hey at least I see someone else who works in Ohio with Wicket! > > Toledo is nowhere near Australia

Re: [OT] wicket users around the world

2008-12-12 Thread trames
Toledo, Ohio USA Note: This is Toledo in the USA not in Spain! There is a city in the USA with that name. :) Hey at least I see someone else who works in Ohio with Wicket! Toledo is nowhere near Australia or Austria although I think there are some kangaroos hopping around in our great zoo -

Re: [OT] wicket users around the world

2008-12-12 Thread Björn Tietjens
Kiel/Hamburg, Germany francisco treacy schrieb: to know a little bit more of our great (and vast) community, i was just wondering if you're keen on sharing where you come from and/or where you work with wicket... for instance, here argentinian/belgian working with wicket in antibes, france fra

Re: [OT] wicket users around the world

2008-12-12 Thread Oleg Taranenko
Hi, native russian, i'm living and working in Germany. Not working with Wicket right now, but love and endorse it, and hopefully become soon a wicket-based project. Oleg On Thu, Dec 11, 2008 at 7:57 PM, francisco treacy < francisco.tre...@gmail.com> wrote: > to know a little bit more of our gre

Re: [OT] wicket users around the world

2008-12-12 Thread francisco treacy
list @ Jayway DK > http://www.jayway.dk > +45 2936 7684 > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > >

Re: [OT] wicket users around the world

2008-12-12 Thread Stefan Simik
Slovakia, working in Bratislava francisco treacy-2 wrote: > > to know a little bit more of our great (and vast) community, i was > just wondering if you're keen on sharing where you come from and/or > where you work with wicket... > > for instance, here argentinian/belgian working with wicket

RE: [OT] wicket users around the world

2008-12-12 Thread Wadi Jalil Maluf
wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org __ Information from ESET NOD32 Antivirus, version of virus signature database 3686 (20081212) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com __ Information from ESET

Re: [OT] wicket users around the world

2008-12-12 Thread dtoffe
Mar del Plata, Argentina. I'll post again the link provided by jwcarman since I like it very much: http://www.frappr.com/wicket Daniel francisco treacy-2 wrote: > > to know a little bit more of our great (and vast) community, i was > just wondering if you're keen on sharing where you

Re: Wicket and CoC

2008-12-12 Thread Ricardo Mayerhofer
Very nice indeed. Based on your example I build my own: public class ConventionalComponentResolver implements IComponentResolver { public boolean resolve(MarkupContainer markupContainer, MarkupStream markupStream, ComponentTag componentTag) { CharSequence wicketId =

Re: Hot deployment / code swapping

2008-12-12 Thread samk
See Thread at: http://www.techienuggets.com/Detail?tx=51475 Posted on behalf of a User I also have the same problem. Even I added getResourceSettings().setResourcePollFrequency(Duration.ONE_SECOND); to WebApplication class. I am using wicket 1.3.4. Before Wicket come to Apache I never have

Is wicket:extend strictly required if including entire html child?

2008-12-12 Thread Antony Stubbs
Is it possible to use markup inheritance without having to use in the children? I'd like to be able to use MI without the children html knowing. Just extending the super component should be enough in a lot of situations. Particularly when extending panels which are naughty and don't have tags, a

Re: [OT] wicket users around the world

2008-12-12 Thread Emanuele Gesuato
Fabio Fioretti wrote: Rome, Italy! :) - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org Padua (near Venice), Italy ! ---

Re: [OT] wicket users around the world

2008-12-12 Thread shetc
American/Scottish working in Ft Lauderdale, FL on some kickass Wicket code. -- View this message in context: http://www.nabble.com/-OT--wicket-users-around-the-world-tp20962108p20975312.html Sent from the Wicket - User mailing list archive at Nabble.com. ---

Using ajax for generating a pdf

2008-12-12 Thread Emanuele Gesuato
Hi there, Reading previous posts i have discovered the existence of the yui context menu in wicket stuff that now i'm using in a project. More specifically, i'm using wicket 1.3.4 with wicket-yui-core 1.3.0 from the wicket 1.3.0 branch of wicketstuff. I would like to do a non-ajax click in

RE: how to reuse a label in the same page?

2008-12-12 Thread Pointbreak
- No you will not save a lot of memory. Wicket components are fairly small. Memory usage will/should mostly be in the application models, and they are easy to share between components. - It will introduce a complexity nightmare with no real benefits (imho) in the framework though. On Fri, 12 Decem

RE: how to reuse a label in the same page?

2008-12-12 Thread Bruno Cesar Borges
Sorry. What I did want to say was that "There are some cases where creating a fragment or a panel to be reused is just... too cumbersome." -Original Message- From: Bruno Cesar Borges [mailto:brunobor...@cetip.com.br] Sent: Friday, December 12, 2008 10:37 AM To: users@wicket.apache.org Su

Re: how to reuse a label in the same page?

2008-12-12 Thread Martijn Dashorst
It would get abused and abused and abused and abused. It is a beginner's mistake. There is no apparent advantage to enabling this. If some concept is fundamentally wrong, there is no way to make it right. This is in the category fundamentally wrong. Martijn On Fri, Dec 12, 2008 at 1:37 PM, Bruno

RE: how to reuse a label in the same page?

2008-12-12 Thread Bruno Cesar Borges
lol... Alright, I agree with you, but think about. There are some cases where creating a fragment or a panel to reuse, wouldn't address the main advantage. We could save a *lot* of memory usage this way, and I think it would be a cool feature. Even with Ajax wouldn't be a problem. -Origin

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-12 Thread Rodolfo Hansen
Yeah, Jquery started something which I tested a couple of months ago with no luck. Writing/Finding a leaner comet client is in the TODO right now... The idea Jesse McConnel has is of making it simpler to marshall data to-from clients. To make it, an actual bus for communication. We haven't had m

Re: how to reuse a label in the same page?

2008-12-12 Thread Martijn Dashorst
The fact that you want to bind a component in two places and complain that you can't, is a code smell: you should extract that component to a panel or fragment and reuse the panel (/fragment). Martijn On Fri, Dec 12, 2008 at 1:32 PM, Martijn Dashorst wrote: > ieuw > > On Fri, Dec 12, 2008 at 1:3

Re: how to reuse a label in the same page?

2008-12-12 Thread Martijn Dashorst
ieuw On Fri, Dec 12, 2008 at 1:30 PM, Bruno Cesar Borges wrote: > Martijn, it is possible to create nodes inside a DOM tree refering to another > DOM node. What if it was possible to do the same with Wicket? > > > label > again > > > again but outside panel! > > Regards, > Bruno > > -Ori

RE: how to reuse a label in the same page?

2008-12-12 Thread Bruno Cesar Borges
Martijn, it is possible to create nodes inside a DOM tree refering to another DOM node. What if it was possible to do the same with Wicket? label again again but outside panel! Regards, Bruno -Original Message- From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] Sent: Frid

Re: What is your experience on the time of development ?

2008-12-12 Thread Antoine Angenieux
Martin Sachs wrote: Your right ! Already I have developed three Wicket apps (12 month of work for a man), I know how fast i can do thinks with wicket, but i need knowledge of e.g. JSF to say wicket is THE FRAMEWORK for the next big site. Maybe with JSF all things will be developed a lot faster,

Re: passing list from java class to javascript

2008-12-12 Thread James Carman
What are you going to do with this list? Perhaps you can just use an ajaxified component? On Fri, Dec 12, 2008 at 1:32 AM, Ashis wrote: > > Thanks guys, > But i need to pass dynamic list which is stored in databases.I have a > method appList() which returns list of application users and i

Re: [OT] wicket users around the world

2008-12-12 Thread James Carman
First Kentuckian to reply...so um, Erlanger, KY USA. I'm working in Cincinnati, OH, right across the river. I am developing bioinformatics software with Wicket (and loving it)! On Fri, Dec 12, 2008 at 6:53 AM, Steve Swinsburg wrote: > First Australian to reply... so um, Australia! Working in th

Re: Modify textfield input before validation

2008-12-12 Thread pixologe
seems to be igor's point of view, at least: http://www.nabble.com/append-a-converter-or-coversion-function-td15921777.html#a15964449 Peter Ertl wrote: > > I really wonder why converters are not the right thing to do? > -- View this message in context: http://www.nabble.com/Modify-textfield-

Re: [OT] wicket users around the world

2008-12-12 Thread Steve Swinsburg
First Australian to reply... so um, Australia! Working in the UK. On 12 Dec 2008, at 11:30, Martin Grigorov wrote: Sofia, Bulgaria El jue, 11-12-2008 a las 19:57 +0100, francisco treacy escribió: to know a little bit more of our great (and vast) community, i was just wondering if you're ke

Re: [OT] wicket users around the world

2008-12-12 Thread Martin Grigorov
Sofia, Bulgaria El jue, 11-12-2008 a las 19:57 +0100, francisco treacy escribió: > to know a little bit more of our great (and vast) community, i was > just wondering if you're keen on sharing where you come from and/or > where you work with wicket... > > for instance, here argentinian/belgian wo

Re: [OT] wicket users around the world

2008-12-12 Thread Advanced Technology®
Maputo, Mozambique Using Wicket to develop all Web based apps on a smal Bank. -- AT(R)

Re: What is your experience on the time of development ?

2008-12-12 Thread Martin Sachs
Your right ! Already I have developed three Wicket apps (12 month of work for a man), I know how fast i can do thinks with wicket, but i need knowledge of e.g. JSF to say wicket is THE FRAMEWORK for the next big site. Maybe with JSF all things will be developed a lot faster, maybe not. Is other t

Re: What is your experience on the time of development ?

2008-12-12 Thread Antoine Angenieux
I would not count in how much you gain during your fist devs. with Wicket (even though you STILL gain a lot of time), but how much dev time you gain when reusing your existing Wicket components and how much time you save when you need to maintain your apps ;) Cheers, Antoine. Martin Sachs w

Re: [OT] wicket users around the world

2008-12-12 Thread Antony Stubbs
Auckland, New Zealand. Currently working in The Netherlands, but currently in Ukraine for a week, working on portal 2 spec implementation in Wicket. :) Martin Sachs wrote: > > Berlin, Germany > > > > - ___ http://stubbisms.wordpress.com http://stubbisms.word

Re: Wicket session back button support

2008-12-12 Thread Paolo Di Tommaso
Good, in this way it works. I'm apply the onBeforeRender trick to propagate the previous state in the session. Thank guys, long live to Wicket Paolo On Thu, Dec 11, 2008 at 6:27 PM, Igor Vaynberg wrote: > or instead of pages use panels as content. that way you use the same > menu instance acr

Re: [OT] wicket users around the world

2008-12-12 Thread Antoine Angenieux
Paris, France. I'm using Wicket in my company for all our commercial webapps, and it fits perfectly our needs ! Cheers, Antoine. Francis De Brabandere wrote: near Ghent, Belgium companies using wicket: http://www.tvh.com ? http://www.cropdesign.com (internal statistics/reporting website)

  1   2   >