RE: JavaScript enabled or disabled

2011-05-23 Thread Wilhelmsen Tor Iver
You could add a Javascript/Ajax callback to a Page that sets e.g. a Session flag that says that Javascript is enabled. See http://stackoverflow.com/questions/162911/how-do-i-call-java-code-from-javascript-code-in-wicket for an example. Or you could try to implement what you need Javascript

Re: JavaScript enabled or disabled

2011-05-23 Thread Martin Grigorov
Can you create a quikstart application that shows this problem ? If Yes then please attach it to Jira. On Sat, May 21, 2011 at 3:08 PM, meduolis meduol...@gmail.com wrote: Already tried this. No success because of

to integrate wicket with itext or any other framework

2011-05-23 Thread hariharansrc
to integrate wicket with other frameworks such as hibernate and itext any other configuration needed or just we can integrate and then we can create connection pool in wicket for hibernate -- View this message in context:

Re: to integrate wicket with itext or any other framework

2011-05-23 Thread Martin Grigorov
See this demo app https://github.com/wicketstuff/core/tree/master/jdk-1.5-parent/phonebook Also check the maven archetypes at http://www.jweekend.com/dev/LegUp. This will create a mini app which you can extend with your application details On Mon, May 23, 2011 at 11:47 AM, hariharansrc

StoredResponsesMap

2011-05-23 Thread François Meillet
Hi Wicketers, While I was doing some load testing with with a small prog using Apache httpclient (45 threads, only the get requests were done) I got this error 17:59:22.086 ERROR [http-bio-8080-exec-1] DefaultExceptionMapper - 108 - Unexpected error occurred

Re: warn on exit from browser

2011-05-23 Thread rebecca
Thanks Robert, but the setRedirect(true) did not help me -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/warn-on-exit-from-browser-tp3516569p3543593.html Sent from the Users forum mailing list archive at Nabble.com.

Re: to integrate wicket with itext or any other framework

2011-05-23 Thread Andrea Del Bene
Take also a look at this post, maybe could be useful for you. http://wicketinaction.com/2009/06/wicketspringhibernate-configuration/ to integrate wicket with other frameworks such as hibernate and itext any other configuration needed or just we can integrate and then we can create connection

Re: StoredResponsesMap

2011-05-23 Thread Martin Grigorov
Please file a ticket. 2011/5/23 François Meillet fm...@meillet.com Hi Wicketers, While I was doing some load testing with with a small prog using Apache httpclient (45 threads, only the get requests were done) I got this error 17:59:22.086 ERROR [http-bio-8080-exec-1]

Re: StoredResponsesMap

2011-05-23 Thread Martin Grigorov
It's fixed in trunk. If you can use trunk for your tests I'll be thankful for feedback. On Mon, May 23, 2011 at 1:05 PM, Martin Grigorov mgrigo...@apache.orgwrote: Please file a ticket. 2011/5/23 François Meillet fm...@meillet.com Hi Wicketers, While I was doing some load testing with

Help I need to understand page locking

2011-05-23 Thread Jim Pinkham
I'm using wicket 1.5 RC3 and just started getting some total system lockups recently in prod that I can't understand. Once it gets into this state, the only remedy is to restart tomcat. Unfortunately, I haven't yet figured out how to reproduce this, so meanwhile I thought I'd ask if someone could

Re: StoredResponsesMap

2011-05-23 Thread François Meillet
Thanks Martin, I tested with trunk, it's fixed. everything is ok now ! François Le 23 mai 2011 à 12:58, Martin Grigorov a écrit : It's fixed in trunk. If you can use trunk for your tests I'll be thankful for feedback. On Mon, May 23, 2011 at 1:05 PM, Martin Grigorov

Re: Help I need to understand page locking

2011-05-23 Thread Martin Grigorov
Wicket 1.5 locks access to the same page instance by more than one thread at a time. You can set log level to DEBUG for org.apache.wicket.page.PageAccessSynchronizer class and see which thread acquires the lock for page with version 0 and never releases it. Instead of going to previous version of

Re: Help I need to understand page locking

2011-05-23 Thread Jim Pinkham
Thanks, good tip. I'll do that, and I'm also going to send in a replacement copy for PageAccessSynchronizer that still has the one minute delay, but then if it fails, it forces the lock anyway and swallows the exception - hopefully that will solve my lock ups until I can find the cause:

Re: Change Order (Priority) of Validator Msgs?

2011-05-23 Thread eugenebalt
Can anyone advise on this? Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Change-Order-Priority-of-Validator-Msgs-tp3539436p3544438.html Sent from the Users forum mailing list archive at Nabble.com.

Re: to integrate wicket with itext or any other framework

2011-05-23 Thread hariharansrc
thanks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/to-integrate-wicket-with-itext-or-any-other-framework-tp3543523p3544470.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Change Order (Priority) of Validator Msgs?

2011-05-23 Thread Tomasz Dziurko
You should use method: final FeedbackPanel setSortingComparator(ComparatorFeedbackMessage sortingComparator) and create comparator which will sort FeedbbackMessages in proper order (in your situation probably those with feedbackMessage.component instanceof Form coming first) -- Best regards

Re: Change Order (Priority) of Validator Msgs?

2011-05-23 Thread Tomasz Dziurko
2011/5/23 Tomasz Dziurko tdziu...@gmail.com final FeedbackPanel setSortingComparator(ComparatorFeedbackMessage sortingComparator) Of course this method is in the FeedbackPanel class :-) -- Best regards Tomasz Dziurko http://tomaszdziurko.pl

Google Chrome and Apache Wicket, an awesome combination

2011-05-23 Thread Brown, Berlin [GCG-PFS]
FYI... I usually ask questions but I thought I post a comment about google chrome. The chrome browser has default web debugging that is similar to firebug. With Firebug, it is more difficult to detect the wicket ajax rendered content but comes up automatically in chrome. Also speed wise,

Re: Google Chrome and Apache Wicket, an awesome combination

2011-05-23 Thread Zilvinas Vilutis
And that is why the user acceptance testing must be done on IE FF :) Žilvinas Vilutis Mobile:   (+1) 623 330 6048 E-mail:   cika...@gmail.com On Mon, May 23, 2011 at 10:45 AM, Brown, Berlin [GCG-PFS] berlin.br...@primerica.com wrote: FYI... I usually ask questions but I thought I post a

Re: Google Chrome and Apache Wicket, an awesome combination

2011-05-23 Thread Martin Grigorov
Well, I don't share your opinion here :-) Chrome Dev tools have no persist console content - once you reload the page all the logs are gone. There is a RFE for that and I voted for it. Also I miss the 'Net' tab. Also Firefox's WebDeveloper tools are much better than current state in Chrome and

Re: Google Chrome and Apache Wicket, an awesome combination

2011-05-23 Thread Eelco Hillenius
Imho the overall user experience in Chrome is better, including the developer tools. Even if it might miss a feature of two :-) Eelco On Mon, May 23, 2011 at 10:52 AM, Martin Grigorov mgrigo...@apache.org wrote: Well, I don't share your opinion here :-) Chrome Dev tools have no persist

Re: facebook like iframe in wicket

2011-05-23 Thread Igor Vaynberg
whatver component writes that out should take a imodelstory and use it to put the right thing into the like url -igor On Sat, May 21, 2011 at 3:33 AM, labano10 okuneislabo2...@gmail.com wrote: I  want to incorporate the facebook like button in my wicket application page. The page is a story

Re: facebook like iframe in wicket

2011-05-23 Thread labano10
@Igor, my main problem actually is updating the src attribute of the iframe at run time because that's what facebook uses to construct the like button. The href part(within src) constitutes of the url of the page being liked with escapes(%3A for : and %2F for /). I want to update especially this

Re: facebook like iframe in wicket

2011-05-23 Thread Igor Vaynberg
how are you outputting it now? -igor On Mon, May 23, 2011 at 11:27 AM, labano10 okuneislabo2...@gmail.com wrote: @Igor, my main problem actually is updating the src attribute of the iframe at run time because that's what facebook uses to construct the like button. The href part(within src)

Re: Google Chrome and Apache Wicket, an awesome combination

2011-05-23 Thread nino martinez wael
I use both for development, check once in a while if the app stil works in ie. .. On May 23, 2011 7:54 PM, Eelco Hillenius eelco.hillen...@gmail.com wrote: Imho the overall user experience in Chrome is better, including the developer tools. Even if it might miss a feature of two :-) Eelco

Re: facebook like iframe in wicket

2011-05-23 Thread labano10
iframe src=$fblikesrc scrolling=no frameborder=0 style=border: none; overflow: hidden; width: 450px; height: 80px; allowTransparency=true/iframe I tried something like that but faced Error using VM library : VM_global_library.vm and got stuck. I am new to velocity but I feel it

Re: wicket showing traces that we used wicket is it a problem

2011-05-23 Thread Igor Vaynberg
thousands of applications show they use php with .php extensions. thousands more show that they use jsp by .jsp extensions, and a lot more show they use struts with a .do extension. why does it matter? -igor On Sat, May 21, 2011 at 9:01 AM, hariharansrc hariharan...@gmail.com wrote: html    

Re: facebook like iframe in wicket

2011-05-23 Thread labano10
What is the best way of replacing the href part with the url of the story page every time I launch it (in wicket)? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/facebook-like-iframe-in-wicket-tp3540423p3545002.html Sent from the Users forum mailing list archive at

Re: facebook like iframe in wicket

2011-05-23 Thread Igor Vaynberg
oncomponenttag(tag) { tag.put(onclick, value); } -igor On Mon, May 23, 2011 at 12:59 PM, labano10 okuneislabo2...@gmail.com wrote: What is the best way of replacing the href part with the url of the story page every time I launch it (in wicket)? -- View this message in context:

BookmarkablePageLink with PopupSettings

2011-05-23 Thread Jered Myers
I am attempting to open a new browser tab to a bookmarkable page. The constructor of my page is being called twice. Is there a way I can prevent this from happening? When I remove the PopupSettings the constructor is only called once, but the page does not open in a new tab. Here is an

Re: wicket showing traces that we used wicket is it a problem

2011-05-23 Thread Maarten Billemont
I can only imagine it fits in the security through obfuscation category. If they don't know it's Wicket, they won't think to use a Wicket exploit on it!. At any rate, I'd be more worried about the fact that you're running it in a Java VM than the fact that the front-end of it is generated by

MetaPattern Usage

2011-05-23 Thread Phil Franken
Can someone give me an example of how to group MetaPatterns? For example if I want to allow MetaPattern.WORD and MetaPattern.EXCLAMATION_POINT... - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: wicket showing traces that we used wicket is it a problem

2011-05-23 Thread hariharansrc
i am just a beginner so i am just asking, it may cause a problem if any security holes we found, other than that i am worrying about nothing. I feel very comfortable to use java in development especially wicket and hibernate. So, i have no plan to switch to .net or php at any cost. Even will

Re: wicket showing traces that we used wicket is it a problem

2011-05-23 Thread Igor Vaynberg
by default wicket does not enforce https. it does, however, give you an easy way to switch - just google it. -igor On Mon, May 23, 2011 at 9:02 PM, hariharansrc hariharan...@gmail.com wrote: i am just a beginner so i am just asking, it may cause a problem if any security holes we found, other

Re: BookmarkablePageLink with PopupSettings

2011-05-23 Thread Martin Grigorov
put a breakpoint in your page constructor and see why it is called twice On Mon, May 23, 2011 at 11:48 PM, Jered Myers jer...@maplewoodsoftware.comwrote: I am attempting to open a new browser tab to a bookmarkable page. The constructor of my page is being called twice. Is there a way I can