[Wicket-user] 优惠代开发票!!

2006-07-10 Thread 刘先生
¹ó¹«Ë¾¸ºÔðÈË(¾­Àí/²ÆÎñ£©ÄúºÃ£º ÉîÛÚÊÐãü̩ʵҵÓÐÏÞ¹«Ë¾,ÔÚÈ«¹ú¸÷ÉèÓзֹ«Ë¾(¹ãÖÝ¡¢¶«Ý¸µÈµÈÊÐÓÐ ·Ö¹«Ë¾)¡£Òò¹«Ë¾½øÏî½Ï¶àÏÖÍê³É²»ÁËÿÔÂÏúÊÛ¶î¶È.ÏÖÓÐÒ»²¿·ÖÔöÖµ ·¢Æ±£¨6%£©ÆÕͨ·¢Æ±( ÉÌÆ·ÏúÊÛ¡¢ÆäËü·þÎñ¡¢¹ã¸æ¡¢ÔËÊä¡¢½¨Öþ¹¤³Ì¡¢

Re: [Wicket-user] Panel visibility

2006-07-10 Thread Martijn Dashorst
Just a thought: if you had overridden (?) isVisible on your MyPanel, then setting it wouldn't have any effect. Martijn On 7/7/06, Frank Silbermann [EMAIL PROTECTED] wrote: I did not modify the client header, but I don't think it's a caching issue, because other widgets are changing as expected

Re: [Wicket-user] SSL

2006-07-10 Thread Johan Compagner
then you are doing the redirect wrong.How and when do you do the redirect??On 7/7/06, Joe Toth [EMAIL PROTECTED] wrote:Weird...I'm only getting the error in Jetty 6 (Beta17). wicket.WicketRuntimeException: Internal Error: Could not render error page class

[Wicket-user] Several times the same panel on a page

2006-07-10 Thread Alban Duval
Hi all, I'd like to know if there is a way to add several times the same panel on the same page ?? It seems to be impossible because it means to add several times element with the same wicket:id... Considering this, I think the question could be : could we change dynamically the wicket:id of

Re: [Wicket-user] Several times the same panel on a page

2006-07-10 Thread Nino Wael
Why dont you just use a listview? regards Nino -Original Message- From: [EMAIL PROTECTED] on behalf of Alban Duval Sent: Mon 10-07-2006 13:30 To: wicket-user@lists.sourceforge.net Cc: Subject:[Wicket-user] Several times the same panel on a page Hi all, I'd like to

Re: [Wicket-user] Several times the same panel on a page

2006-07-10 Thread Alban Duval
What I want to do is to use a panel containing a table, a text field and a button (allowing to add the content of the text field into the table using a listview). I would like to use such a panel four times on the same page. The purpose is to avoid coding four times all of those components by

Re: [Wicket-user] Several times the same panel on a page

2006-07-10 Thread Martijn Dashorst
You can use the panel four times, but not the instance. As each component requires to have only 1 parent, you can add it only once. Also, the model (the state of the component) is bound to the panel, so setting the panel multiple times to the page will overwrite the state of previous usages. These

Re: [Wicket-user] Several times the same panel on a page

2006-07-10 Thread Johan Compagner
why??Just dospan wicket:id=panel1span wicket:id=panel2span wicket:id=panel3span wicket:id=panel4and in your code: add(new MyPanel(panel1));add(new MyPanel(panel2));add(new MyPanel(panel3));add(new MyPanel(panel4));johanOn 7/10/06, Alban Duval [EMAIL PROTECTED] wrote: What I want to do is

[Wicket-user] introducing qwicket

2006-07-10 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 I just uploaded the svn and website for my new project qwicket. Qwicket is a quickstart application that will produce the skeleton of a spring+hibernate+wicket project. I've said a bit more about it at http://www.antwerkz.com/wp/?p=1006 and the

Re: [Wicket-user] Several times the same panel on a page

2006-07-10 Thread Johan Compagner
use a listview if you want repeating stuffBut what do you mean exactly with the same panel?The same instance? That is not possible. A instance can only be used once in a page.You can add more instances of the panel to your page. But then also the wicket:id's don't have to be the same or something

Re: [Wicket-user] SSL

2006-07-10 Thread [EMAIL PROTECTED] Imam
Hi,I had a similar problemI decided not to use that RequiredSSL method.Instead i maintain an array of page classes that require https and used the following code. It worked fine for me. Hope it helps you. protected IResponseStrategy newResponseStrategy() { return new IResponseStrategy() {

Re: [Wicket-user] Several times the same panel on a page

2006-07-10 Thread Bruno Borges
It's just like in JFC Swing.You can't add the same JButton's instance into several JPanels... ;)[]'sOn 7/10/06, Johan Compagner [EMAIL PROTECTED] wrote:use a listview if you want repeating stuff But what do you mean exactly with the same panel?The same instance? That is not possible. A instance

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-10 Thread Vincent Jenks
OK, that definitely helped...but Results : Tests run: 410, Failures: 0, Errors: 1, Skipped: 0 [INFO] [ERROR] BUILD FAILURE [INFO] [INFO] There are

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-10 Thread Vincent Jenks
Beautiful, it all built and it works in the app. Thanks Igor! On 7/10/06, Igor Vaynberg [EMAIL PROTECTED] wrote: mvn install -Dmaven.test.skip=true -Igor On 7/10/06, Vincent Jenks [EMAIL PROTECTED] wrote: OK, that definitely helped...but Results : Tests run: 410, Failures: 0,

[Wicket-user] Is it possible to abort a request?

2006-07-10 Thread Adam Smyczek
Hi All, This is probably a simple question, but is it possible to abort a request in e.g. onBeginRequest() method of WebRequestCycle and return an empty response? Adam - Using Tomcat but need to do more? Need to

Re: [Wicket-user] Is it possible to abort a request?

2006-07-10 Thread Eelco Hillenius
Yep. Look at AbortException and subclasses. You might be looking for AbortWithHttpStatusException. Eelco On 7/10/06, Adam Smyczek [EMAIL PROTECTED] wrote: Hi All, This is probably a simple question, but is it possible to abort a request in e.g. onBeginRequest() method of WebRequestCycle