Re: [Wicket-user] DropDownChoice Ajax : selection value

2006-11-22 Thread Vincent Renaville
Dear, Thanks for your help, now I use getModelObject and it works quiet good Vincent On Tue, 2006-11-21 at 08:35 -0800, Igor Vaynberg wrote: > the value is populated into the model ... since you havent bound your > model to any property you have to access the model directly ... > onupdate() {

Re: [Wicket-user] Interesting alternatives to Hibernate

2006-11-22 Thread Carfield Yim
> You're missing one of the strong points (for me) of iBatis! Simply > enable Debug level logging for the java.sql loggers, > e.g. > log4j.logger.java.sql=DEBUG > > or if you want to fine tune it... > log4j.logger.java.sql.Connection=DEBUG > log4j.logger.java.sql.Statement=DEBUG >

Re: [Wicket-user] Abort Ajax Operation

2006-11-22 Thread Matej Knopp
I don't think this is about AJAX. I think the question concerns the session locking. If you make an ajax request and it takes too long, the session is locked and the application seem to be frozen. I don't think there's much I can do about it. -Matej Igor Vaynberg wrote: > tbh im not even sure

Re: [Wicket-user] Abort Ajax Operation

2006-11-22 Thread Igor Vaynberg
tbh im not even sure there is a way to abort the request initiated through xmlhttprequest object. matej is better suited to answer this, he has many more js scars then i. -igor On 11/22/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: I don't know if there is anything for that yet. Matej, Igor?

Re: [Wicket-user] Abort Ajax Operation

2006-11-22 Thread Eelco Hillenius
I don't know if there is anything for that yet. Matej, Igor? If there isn't, you could open a feature request for it. Eelco On 11/21/06, samyem <[EMAIL PROTECTED]> wrote: > > When there is an ajax operation, if the operation takes too long, what would > be the best way to abort the operation? Th

Re: [Wicket-user] wicket stuff stuff

2006-11-22 Thread Gwyn Evans
On 22/11/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > On 11/22/06, James McLaughlin <[EMAIL PROTECTED]> wrote: > > This does bringing up what the default permission scheme should be. For now > > we are allowing anyone who is logged in to read/write (No more anonymous). > > Once we have the mai

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread cowwoc
Thank you :) So assuming bookmarkable forms are 100% solved in Wicket 2.0 I think this covers all bases. Gili Eelco Hillenius wrote: >> For example, if you go to Amazon, add some book to your cart do >> "checkout" and copy/paste that the URL into someone else's browser it'll >> r

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Eelco Hillenius
> For example, if you go to Amazon, add some book to your cart do > "checkout" and copy/paste that the URL into someone else's browser it'll > recover gracefully by redirecting you to some page displaying something > related to cart (maybe it displays your cart as empty) or some page > disp

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread cowwoc
Eelco, one of the points I tried making (and seemed to have gotten lost in the loop) is this: 1) User is viewing a non-bookmarkable page http://www.google.com/Main/Start?wicket:interface=:0:: but wicket displays http://www.google.com/Start in his URL bar instead (not sure if this is techn

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Igor Vaynberg
if they dont add anything to the url then the url might look pretty but two people coming to it will see different things because all the info is stored in session. so it makes what you want even worse. at least with wicket you get a page expired page, with tapestry you get a page but you see som

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread cowwoc
When Wicket 2.0 is released and I can use bookmarkable forms I will quite gladly use it. I am simply pointing out the problems with the current design. BTW, Wicket 2.0 does completely solve this, right? Gili Eelco Hillenius wrote: >> I think you're missing a very important use-ca

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Igor Vaynberg
you dont see the ugly because the screencast is a freaking helloworld app and the properties used are primitives. its so typical, someone puts out a screencast of helloworld with zero complexity because it is a helloworld and everyone jumps up and down screaming: oh how cool is that? i want to s

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread cowwoc
Again, I refer you to Tapestry. Obviously I wouldn't want the kind of URL you pasted but if you look at Tapestry's screencast they don't add *anything* to the URL. Now, it could very well be that this is something specific to small examples and does not work for bigger ones but it could al

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Eelco Hillenius
I don't know. If you think about what would be the least work, I would say have one entry page for the wicket-stuff project and everything else on the WIKI. Eelco On 11/22/06, James McLaughlin <[EMAIL PROTECTED]> wrote: > There are some issues surrounding wiki that should be discussed, however.

[Wicket-user] Databinder 1.0

2006-11-22 Thread Nathan Hamblen
It's solid, as far as we can tell. :) There's some new documentation on the site that I hope is helpful to Wicket beginners, regardless of their plans for persisting data. It's an overview of IModel, why it's important, and how it helps with persistence: http://databinder.net/manual/ Nathan ---

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread James McLaughlin
There are some issues surrounding wiki that should be discussed, however. SF webservers mount the project directories read only, so this means the wiki data directory had to be under /tmp/persistent/...// and that directory needs to be world writeable. I changed the permissions of our directory un

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Eelco Hillenius
Look, this discussion every time again is getting old. It has been stated many times before: the difference between Wicket and many other frameworks is that Wicket's URL are 'safe' *by default*; if you want them to be public (bookmarkable), you have to be explicit about it. With other frameworks, y

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Eelco Hillenius
No. ONE part of the story is back button support. IN CASE you are using the second level session store thing that is default for 1.3 and 2.0 now, we don't need that multi-window support. If you don't use that, but e.g instead use the older page maps, you DO need it, as you don't want one wi

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Eelco Hillenius
> I think you're missing a very important use-case. I created a Wicket > webapp at work, what happens on a weekly basis is that someone sees > something he wants to discuss so he copy/pastes the URL from his browser > into an email. Non-nice URLs shouldn't even be visible for people to > mi

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Eelco Hillenius
Really, what is the hangup on URLs anyway. Do you ever get stressed out by seeing an URL like http://www.amazon.com/s/ref=nb_ss_b/102-2078604-2484922?url=search-alias%3Dstripbooks&field-keywords=donkey&Go.x=0&Go.y=0&Go=Go ? Eelco On 11/22/06, cowwoc <[EMAIL PROTECTED]> wrote: > > heh, if

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Martijn Dashorst
On 11/22/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > On 11/22/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > > Which is not a wise thing to do. The site is generated from the > > wicket-stuff main project using maven. So your change will be > > overwritten the next time it is generated. > >

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Korbinian Bachl
well - and im on him with this. i think a wiki is far more suited for our needs than that maven thing (where at least i dont understand most yet :O ) > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Eelco Hillenius > Gesendet: Mittwoch,

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Eelco Hillenius
On 11/22/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Which is not a wise thing to do. The site is generated from the > wicket-stuff main project using maven. So your change will be > overwritten the next time it is generated. heh. A couple of emails back you proposed not to use maven site in

Re: [Wicket-user] wicket stuff stuff

2006-11-22 Thread Martijn Dashorst
On 11/22/06, James McLaughlin <[EMAIL PROTECTED]> wrote: > This does bringing up what the default permission scheme should be. For now > we are allowing anyone who is logged in to read/write (No more anonymous). > Once we have the maintainers sorted out, would it be better to give write > permissio

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Korbinian Bachl
hmm - no it wont, as the page didnt exist before :) but was linked to... > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Martijn Dashorst > Gesendet: Mittwoch, 22. November 2006 17:43 > An: wicket-user@lists.sourceforge.net > Betreff: Re

Re: [Wicket-user] wicket stuff stuff

2006-11-22 Thread James McLaughlin
Right. Spaced that out. Thanks. This does bringing up what the default permission scheme should be. For now we are allowing anyone who is logged in to read/write (No more anonymous). Once we have the maintainers sorted out, would it be better to give write permission to only maintainers, admins,

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Martijn Dashorst
Which is not a wise thing to do. The site is generated from the wicket-stuff main project using maven. So your change will be overwritten the next time it is generated. Martijn On 11/22/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > > I havent been lazy, too. > > I just fixed the mailing-list

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Korbinian Bachl
I havent been lazy, too. I just fixed the mailing-list page on http://wicket-stuff.sourceforge.net/mail-lists.html - it wasnt there before, i created it from that, what was in the OLD dir - hope this is now ok. Best regards _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auft

[Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread James McLaughlin
I've created a Todo wiki page http://wicket-stuff.sourceforge.net/cgi-bin/moin.cgi/WicketStuffToDo Please add general wicket-stuff todo stuff here (not project specific). Also, if someone wants to take a task, maybe they can put their name next to it. I have a couple of questions, too. Is wick

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Igor Vaynberg
the classloader will still barf after certain situations i think. when you add a new property for example and refresh a page, what happens? a new instance of that component/page is created, but the property's value is not in the url which might lead to some weird invalid state scenarios. -igor

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Korbinian Bachl
emm - thats what i wrote... you dont use them equally, but use one and come back then... the current way allows to change the browser windows or even use them equally - but thats nothing a human does, as he usually uses it as a bokmark, note, info or sth. like that _ Von: [EMAIL PROT

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Igor Vaynberg
yeah? and what happens when your component property is not a primitive? are you then happy with http://www.google.com/Start.html?param1=A98AS98AA8947A8947A8947A89478A97A94879A847A9879A8479A8479A847A9847A9487A4987A4987A498A749A8749A8479A84789A7498A7498A7498A47A9847A984789A7498A4 which would be th

Re: [Wicket-user] Wicket-Stuff: ProjectMantainers page updated

2006-11-22 Thread James McLaughlin
Great. I'm thinking maybe we need a second ProjectStatus page, since I believe the amount of status info is going to grow. This would have info such as Notes, Current Versions, Maven support, and possibly a TODO list for each project. Or each project can have a project status page, but I would s

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Igor Vaynberg
i do it all the time. i am at some point in a webapp, i rightclick on a link do open in a new window and work in the new window. then when im done i close the new window and continue working in the new one. so for me opening a new tab is like keeping a bookmark in the app. -igor On 11/22/06, K

Re: [Wicket-user] i18n in errors from standard validators

2006-11-22 Thread Igor Vaynberg
On 11/22/06, Andrew Klochkov <[EMAIL PROTECTED]> wrote: yep, I just made 2 mistakes, but the question is how to use i18n with wicket std validators? mistakes: 1) setLabel should take IModel, so the code is: field.setLabel(new Model("localized.field")); this should be field.setLabel(new R

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Matej Knopp
This is just ugly. And I'm not even sure it would work while preserving current "no-double-posts" policy. Imagine you're doing a form post now. After the post processed, wicket makes redirects. But if you want to send the page id as post information, you can't redirect! So you have two options.

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Johan Compagner
i could do that.. Just make a form post of every link then store state in a special field (see 2.0 that has partial implementation already) If you refresh the browsers url then we have to have the static mounts (that we talked about) and the page for that class is found and rendered (or not found

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Matej Knopp
I don't know about the check. IMHO it should be disabled by default. Now that we have second level session store there's not need for that script and multiple pagemap. No need at all. -Matej Johan Compagner wrote: > I was just thinking about that now... > > And suddenly i have a question: Wh

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Korbinian Bachl
> But if you have a tabbed panel in a page, you want to have > one tab opened in one window and another tab opened in second > window. That's what users require. At least my users do > require that. And that's also what I expect from a web application. this is the point i mean - ive never seen

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Johan Compagner
I was just thinking about that now... And suddenly i have a question: Why do we have the new window/tab check again in the page? I couldn't care less anymore about a page being in 2 browsers (and in the same pagemap) Just be sure that versioning works so if the page is changed in one window it c

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Matej Knopp
Are you even sure tapestry is doing that? -Matej cowwoc wrote: > If you can't copy/paste that additional information anyway (because > you'll get a Page Expired) then it shouldn't be visible at all so people > don't even make the mistake of including it. > > I agree with you that Wic

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread cowwoc
If you can't copy/paste that additional information anyway (because you'll get a Page Expired) then it shouldn't be visible at all so people don't even make the mistake of including it. I agree with you that Wicket somehow has to know that window1 has a different state than window

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Matej Knopp
But this is something completely different. Cart is shared between pages, usually stored in session. Cart is not specific for every pages. But if you have a tabbed panel in a page, you want to have one tab opened in one window and another tab opened in second window. That's what users require.

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Johan Compagner
if you want to support that always redirect to a Bookmarkable page class setResponsePage(MyPage.class) setRedirect(true) johan On 11/22/06, cowwoc <[EMAIL PROTECTED]> wrote: I think you're missing a very important use-case. I created a Wicket webapp at work, what happens on a weekl

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread cowwoc
I think you're missing a very important use-case. I created a Wicket webapp at work, what happens on a weekly basis is that someone sees something he wants to discuss so he copy/pastes the URL from his browser into an email. Non-nice URLs shouldn't even be visible for people to mistakenly

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Johan Compagner
hmmm forgot to copy paste myself :) the class in question is WebRequestCodingStrategy On 11/22/06, Johan Compagner <[EMAIL PROTECTED]> wrote: you can already get rid of the wicket prefix if you want. copy paste this class: change the static final namespace variable. johan On 11/22/06,

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Johan Compagner
you can already get rid of the wicket prefix if you want. copy paste this class: change the static final namespace variable. johan On 11/22/06, Matej Knopp <[EMAIL PROTECTED]> wrote: Again and again. What would do if you open the start.html page in two browsers windows? Or don't your users do

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Korbinian Bachl
> >Again and again. >What would do if you open the start.html page in two browsers windows? thats the wrong question! - the question would be: what behaviour would the enduser expect when he uses 2 browserwindows/tabs for 1 website? I found out that most enduser just do this, to keep a site as

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Matej Knopp
Again and again. What would do if you open the start.html page in two browsers windows? Or don't your users do that? The additional information in url is not there for fun. There is a good reason for that. And give us some time, after the refactor planed for 2.0 it should be possible to get rid

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread wgehner
Make /wicket the default mapping, and most people will never change it :-) Sent from my Verizon Wireless BlackBerry -Original Message- From: Upayavira <[EMAIL PROTECTED]> Date: Wed, 22 Nov 2006 14:29:06 To:wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Tapestry 5 instanta

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Upayavira
Frank Bille wrote: > Especially if it was appended to www.google.com :P Having just been to an 'open source jam' at Google's office last week (where I met Al), they would barely state what languages they used, let alone disclose what frameworks they use. So, in Google's c

Re: [Wicket-user] Interesting alternatives to Hibernate

2006-11-22 Thread Gwyn Evans
Isn't this what the "Avoiding N+1 Selects (1:M and M:N)" section in the documentation[1] is all about? /Gwyn [1] http://cvs.apache.org/dist/ibatis/ibatis.java/docs/iBATIS-SqlMaps-2_en.pdf On 20/11/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > i too have become rather disillusioned with hibernat

Re: [Wicket-user] Interesting alternatives to Hibernate

2006-11-22 Thread Gwyn Evans
On 21/11/06, Carfield Yim <[EMAIL PROTECTED]> wrote: > While I am using ibatis with wicket now because my boss like it, I > found it missing some feature those are useful for me ... > 2) This is hard for me to check the actual SQL running, I can never > able to figure out how log4j showing SQL in

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread wgehner
But www.google.com/wicket/Start.html by default would be the best of all worlds :-) I put a question yesterday on how to use mounted urls repeatedly without breaking page session. I think it's important to make that possible. Sent from my Verizon Wireless BlackBerry -Original Message

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Johan Compagner
when do you "choose" an url? urls only have to be "nice" when they are "exported" like links you click on in external resources, mails for example internally it doesn't matter to much for the webapplications you make with wicket. johan On 11/22/06, cowwoc <[EMAIL PROTECTED]> wrote:

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Frank Bille
Especially if it was appended to www.google.com :P Frank On 11/22/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: Don't underestimate the power of viral marketing for the Wicket framework... having Wicket being part of every URL on the planet would generate major mindshare. Martijn On 11/22

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Martijn Dashorst
Don't underestimate the power of viral marketing for the Wicket framework... having Wicket being part of every URL on the planet would generate major mindshare. Martijn On 11/22/06, cowwoc <[EMAIL PROTECTED]> wrote: > > heh, if I had to choose between: > > http://www.google.com/Start.html

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread cowwoc
heh, if I had to choose between: http://www.google.com/Start.html and http://www.google.com/Main/Start?wicket:interface=:0:: I'd choose the first time time and time again. There is the interface part which I'd love to hide from users (they shouldn't ever be explicitly p

Re: [Wicket-user] default value (Choose One) lost in DropDownChoice selection

2006-11-22 Thread Charlie Dobbie
Hi Jaime, The "Choose One" selection only appears when nulls are not considered valid but the selection is currently null. If you want a default no-decision option, the cleanest solution is to set the DropDownChoice to allow nulls, and set the formName.componentName.nullValid property to the text

Re: [Wicket-user] wicket stuff stuff

2006-11-22 Thread Iulian Costan
added myself as maintainer for wicket-contrib-{tinymce,gmap} and wicket-contrib-{tinymce,gmap}examples projects. on wiki page, besides name and website, maybe it worth adding email address as well. /iulian On 11/22/06, Jean-Baptiste Quenot <[EMAIL PROTECTED]> wrote: * James McLaughlin: > I've

[Wicket-user] 代开发票

2006-11-22 Thread 刘先生
你好! 本公司属于有限责任公司,现因公司在税务局领取发票指标有余: (商品销售,运输.海关代征增值税发票等)可以优惠外开.(另)有 多家企业委托我公司可以向外开放.欢迎来电咨询!我公司以最真诚,最优 惠的价格为贵企业公司服务.

Re: [Wicket-user] wicket stuff stuff

2006-11-22 Thread Filippo Diotalevi
On 11/22/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > I would suggest making the wiki the main documentation page. The maven > doc generation needs some understanding and not many have the time to > learn it. +1 for the wiki... there are a lot of projects in wicket-stuff, and it would be diff

[Wicket-user] Wicket-Stuff: ProjectMantainers page updated

2006-11-22 Thread Filippo Diotalevi
Hi all, I've updated the new page ProjectMantainer in the wicketstuff-wiki with (hopefully) all the projects of wicketstuff. Please take a minute to see it and update with correct infos. http://wicket-stuff.sourceforge.net/cgi-bin/moin.cgi/ProjectMaintainers I think we particularly need to know

Re: [Wicket-user] wicket stuff stuff

2006-11-22 Thread Frank Bille
On 11/22/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: As for the wicket parent, I think that would be nice. It would standardize common things such as wicket dependency, svn repository, etc. But this is for the project maintainers themselves to decide. Indeed, just a surgestion :) Frank

Re: [Wicket-user] wicket stuff stuff

2006-11-22 Thread Martijn Dashorst
I would suggest making the wiki the main documentation page. The maven doc generation needs some understanding and not many have the time to learn it. As for the wicket parent, I think that would be nice. It would standardize common things such as wicket dependency, svn repository, etc. But this

Re: [Wicket-user] wicket stuff stuff

2006-11-22 Thread Frank Bille
Would it make sense to make a wicket-stuff-parent as we have wicket-parent? Frank - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on

Re: [Wicket-user] wicket stuff stuff

2006-11-22 Thread Jean-Baptiste Quenot
* James McLaughlin: > I've started a topic ProjectMaintainers and populated it with > the mails received today. Thanks James, I added WicketContribDojo and WicketContribVelocity. -- Jean-Baptiste Quenot aka John Banana Qwerty http://caraldi.com/jbq/ ---

[Wicket-user] hairbrush

2006-11-22 Thread Cardenas D. Violet
Da wird aber auch wirklich jedes Salzkorn beleuchtet. At least that's my story and I'm sticking to it. And al-Qaida, unlike the American media, sees both as integrated jihadist struggles against the infidel. It has been happening for ages. So when he spoke to a white female grocery clerk in Mis

[Wicket-user] 代开发票

2006-11-22 Thread 刘先生
你好! 本公司属于有限责任公司,现因公司在税务局领取发票指标有余: (商品销售,运输.海关代征增值税发票等)可以优惠外开.(另)有 多家企业委托我公司可以向外开放.欢迎来电咨询!我公司以最真诚,最优 惠的价格为贵企业公司服务.

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Matej Knopp
Nice URLS? Well.. I don't know, to me it doesn't look that great. I mean it seem to miss an information. What happens if you open the page in multiple browser windows? If the URL is same, how will tapestry reconstruct the data? And also, does the Tapestry 5 finally supports dynamically changin

Re: [Wicket-user] i18n in errors from standard validators

2006-11-22 Thread Andrew Klochkov
yep, I just made 2 mistakes, but the question is how to use i18n with wicket std validators? mistakes: 1) setLabel should take IModel, so the code is: field.setLabel(new Model("localized.field")); 2) properties file contents: RequiredValidator=Please fill field '${label}' Igor Vaynberg wro

Re: [Wicket-user] Issue of BufferedWebResponse Not Serializable

2006-11-22 Thread Johan Compagner
ignore the stack see this: if (Application.get ().getDebugSettings().getSerializeSessionAttributes()) but having that disabled in development is not recommended because you do then encounters bugs like you do now. johan On 11/22/06, Carfield Yim <[EMAIL PROTECTED]> wrote: On 11/22/06,

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Johan Compagner
also what does this feature have to do with URLS? On 11/21/06, cowwoc <[EMAIL PROTECTED]> wrote: Two questions about: http://howardlewisship.com/blog/2006/10/tapestry-5-screencast-2.html 1) How did they get "instantaneous" page reloads working? 2) How did they get their URLs to remai

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Johan Compagner
DevLoader doesn't do that work. DevLoader is there for you to be able to have a Web application of your project that has libs and references to other projects and see those if they where in the WEB-INF/lib dir.. We replace the classloader of tomcat to be able to load jars from other places. about

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Joni Freeman
On Tue, 2006-11-21 at 15:10 -0800, Eelco Hillenius wrote: > On 11/21/06, Alexei Sokolov <[EMAIL PROTECTED]> wrote: > > Actually, > > > > There is a sysdeo tomcat plugin for eclipse which can be configured with a > > special 'devloader' classloader. With this config you'll see changes right > > afte