Re: Too many path parts in page parameters

2009-07-03 Thread Bas Vroling
After removing all the highslide code, that is not the only thing that goes wrong. In my html file I have a panel containing this: h3Dataa href=# wicket:id=toggleDataPanelimg src=img/ plus01.gif//a/h3 the mixedParamUrlCodingStrategy trips on that too, and I can't see why this doesn't

AjaxEditableLabel field width.

2009-07-03 Thread Martin Pieters
I've been trying to implement a editable label in a DataView. Getting the AjaxEditableLabel into the DataView presented no trouble. However, I'm having trouble defining the width of the field. Ajax examples have yielded me no help on the methodology for this. I've tried SimpleAttributeModifier,

Re: Wicket behind proxy (AJP)

2009-07-03 Thread Marc Ende
Hello Sergey, I had the same problems but I solved them using the virtual-host-feature of tomcat. After that the ProxyPass looks very easy: VirtualHost... ... ProxyPass / ajp://localhost/ ... /VirtualHost yours marc Sergey Podatelev schrieb: Hello, I know this question had already been

Can't add a Form component to an Item in RefreshingView!?

2009-07-03 Thread Philip Watson
I'm new to Wicket. I'm a little impatient with this one... so here goes. I have a RefreshingView, with each item getting a Fragment component added to it in the populateItem() method. Each of these Fragment components only contain Labels. All is well here. However, whenever I add a single

Re: JDeveloper - Can I get a show of hands?

2009-07-03 Thread Peter Ertl
looks nice, but no support for postgresql :-( Am 02.07.2009 um 21:54 schrieb John Armstrong: Since we are plugging our favorite DB tools I swear by Database Workbench Pro (http://www.upscene.com/). The author is extremely responsive (he'll give you a custom build, usually in 48 hours, when

Re: Can a RadioChoice display input for null value?

2009-07-03 Thread Robin Sander
To answer my own question in case anybody else has the same problem: It is not possible out of the box. You have to pass null together with the other options to RadioChoice and then set your own ChoiceRenderer which returns the localized value in the same way as

problem with fixed css style for modal window

2009-07-03 Thread Chaviv Weinberg
Hello, We are trying to get the modal window to stay fixed in the center of the screen. The problem we are running into are the lines 496: var left = (width / 2) - (modalWidth / 2) + scLeft; 497: var top = (height / 2) - (modalHeight / 2) + scTop; They are adding the scroll position to the left

Re: intercept security check in wicket-auth-roles

2009-07-03 Thread fstof
Any luck with this? I'm looking to do the same thing, but how Brill Pappin wrote: I'm trying to integrate wicket-auth-roles with a token based SSO security system. I can't see where I can intercept the authentication sequence and auto-login the user based on the token. Essentially

Re: Slideshow

2009-07-03 Thread nino martinez wael
just make an ajax version and use normal pagination..? 2009/7/2 Daniele Dellafiore ilde...@gmail.com: On Mon, Jun 29, 2009 at 2:20 PM, Johannes Schneidermaili...@cedarsoft.com wrote: Thanks for that hint. Do you know how many images wicket-slides/SmoothGallery support? I will have galleries

RE: Can't add a Form component to an Item in RefreshingView!?

2009-07-03 Thread Jeremy Thomerson
Hard to help you without seeing code / markup. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Philip Watson philip.john.wat...@gmail.com Sent: Friday, July 03, 2009 3:23 AM To: users@wicket.apache.org Subject: Can't add a Form

Detaching and ModalWindow causes race condition

2009-07-03 Thread Martijn Dashorst
In our apps we (wrongfully IMO) make heavily use of ModalWindow (our users seem to like them). We ran into an issue/race condition where we have shared a model between the calling page and the ModalWindow. We have an autocomplete textfield with an onblur handler attached. This onblur handler is

Re: UploadProgressBar does not work in Safari browser?

2009-07-03 Thread Mathias Nilsson
Sorry for bringing up and old thread but I got the exact same problem. Anyone got this working on safari, chrome and opera? I know that the UploadProgressBar uses it's own ajax request. Is it something in the source code? IE6 PC - Works IE7 PC - Works Firefox ( 3.5 ) PC - Works Google Crome (

Re: Wicket behind proxy (AJP)

2009-07-03 Thread Anton Veretennikov
Hello, Sergey, May be this is not a nice solution, but I could solve this problem only by using RewriteRule as follows: VirtualHost *:80 ServerName www.sitename.ru ServerAlias sitename.ru ProxyPass / ajp://127.0.0.1:8009/SiteApp-1.0-SNAPSHOT/ ProxyPassReverse /

Re: Can't add a Form component to an Item in RefreshingView!?

2009-07-03 Thread Fernando Wermus
Philip, Remember that some repeaters when are refreshed change their items. You have to instruct no to create new items instances. Take a look at ListView. I looked for Refreshing view but I couldn't see any class like that. bye! On Fri, Jul 3, 2009 at 1:23 AM, Philip Watson

inserting variable in script

2009-07-03 Thread Bas Vroling
I have this piece of html: script type=text/javascript set_query('ADRB2_HUMAN', 'BioSapiens', 3, ''); start_dasty(0); /script how would I change 'ADRB2_HUMAN' into some other name? I can't just use a label right? - To

Re: Large internet rich UI Wicket websites?

2009-07-03 Thread David Chang
Jeremy, thanks for your input. I don't quite understand the side note in your reply. For a large website such as Amazon to work, there should absolutely be different technologies/tiers, tuning, security, and other considerations. The basic question is whether a framework is up to that task

Source checkout and test

2009-07-03 Thread Mathias Nilsson
Hi, I'm very new to this source checkout and was wondering the following. I need to change some things in wicket-extensions ajax.upload. How can I check out the code and make a dependecy in my pom to the checkout version?

Re: Source checkout and test

2009-07-03 Thread Bas Vroling
you can checkout the source using svn, see here for more details: http://wicket.apache.org/building-from-svn.html when you have checked out the sources, you can modify them and run mvn install. This will build and place the modified wicket version in your local maven repository. On 3 Jul,

Fwd: AjaxEditableLabel field width.

2009-07-03 Thread Martin Pieters
I've been trying to implement a editable label in a DataView. Getting the AjaxEditableLabel into the DataView presented no trouble. However, I'm having trouble defining the width of the field. Ajax examples have yielded me no help on the methodology for this. I've tried SimpleAttributeModifier,

Re: intercept security check in wicket-auth-roles

2009-07-03 Thread Igor Vaynberg
wicket auth roles is an example, not a reusable framework. you should copy and paste the code into your project and customize as needed. -igor On Fri, Feb 20, 2009 at 8:30 AM, Brill Pappinbr...@pappin.ca wrote: I'm trying to integrate wicket-auth-roles with a token based SSO security system.

Re: UploadProgressBar does not work in Safari browser?

2009-07-03 Thread Igor Vaynberg
patches are welcome -igor On Fri, Jul 3, 2009 at 6:12 AM, Mathias Nilssonwicket.program...@gmail.com wrote: Sorry for bringing up and old thread but I got the exact same problem. Anyone got this working on safari, chrome and opera? I know that the UploadProgressBar uses it's own ajax

Re: inserting variable in script

2009-07-03 Thread Igor Vaynberg
use iheadercontributor to write out the whole thing -igor On Fri, Jul 3, 2009 at 7:09 AM, Bas Vrolingbvrol...@cmbi.ru.nl wrote: I have this piece of html: script type=text/javascript set_query('ADRB2_HUMAN', 'BioSapiens', 3, ''); start_dasty(0); /script how would I change 'ADRB2_HUMAN'

Re: inserting variable in script

2009-07-03 Thread Bas Vroling
Does this also work when this should be somewhere down in the body? On Jul 3, 2009, at 17:43 , Igor Vaynberg wrote: use iheadercontributor to write out the whole thing -igor On Fri, Jul 3, 2009 at 7:09 AM, Bas Vrolingbvrol...@cmbi.ru.nl wrote: I have this piece of html: script

Re: Localization message for validators

2009-07-03 Thread Igor Vaynberg
yeah, it does seem inconsistent :| will have to think about this some more. on the first glance field.key seems ok and personally i do not mind going back to it but i need to search back through the archives and reread the threads that affected this change in the first place if i can find them

Re: inserting variable in script

2009-07-03 Thread Igor Vaynberg
no, header contributor outputs things into head, which is where all script tags should go. it does support outputting script into body onload event, so if you need to have this run later you can use that. -igor On Fri, Jul 3, 2009 at 8:48 AM, Bas Vrolingbvrol...@cmbi.ru.nl wrote: Does this also

Re: Localization message for validators

2009-07-03 Thread Uwe Schäfer
Igor Vaynberg schrieb: yeah, it does seem inconsistent :| will have to think about this some more. on the first glance field.key seems ok and personally i do not mind going back to it but i need to search back through the archives and reread the threads that affected this change in the first

Re: Anybody know what is this situation?

2009-07-03 Thread bgooren
I got the same error today, seems totally random. The only possible explanation I have is that maybe the subclass (LoginPage$1 in your case) stores a PageHolder class instead of the actual page (LoginPage) when serialized, and when LoginPage$1 is deserialized, the PageHolder retrieves/points to

Re: Anybody know what is this situation?

2009-07-03 Thread Jeremy Thomerson
Generally unexplained class issues like this are because the same class gets loaded a second time from a different class loader. I once had it throwing a ClassCastException that ClassA != ClassA. Hard to track down, though. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 3,

Re: UploadProgressBar does not work in Safari browser?

2009-07-03 Thread Mathias Nilsson
I don't get it.. I have made a call to the javascript function here from progressbar but the UploadWebRequest always returns |0|0|0|0 for Opera, chrome . This simple javascript should be sufficient. In safari the updateProgressBar() is not called at all. var request = null; function

Re: UploadProgressBar does not work in Safari browser?

2009-07-03 Thread Mathias Nilsson
Ok, a obvious bug in the code. We need to call createTransport( url ) again in the setTimeout method. Still, there is the chrome and safari bug. -- View this message in context: http://www.nabble.com/UploadProgressBar-does-not-work-in-Safari-browser--tp21571997p24330296.html Sent from the

Re: tinymce textarea in a modal window not letting to type

2009-07-03 Thread Cristi Manole
Hey, Did you manage to solve this? I'm facing the same problem - tinymce added to a modal (based on panel) works the first time, second time it is displayed nicely but cannot do anything with it (cannot focus so cannot type). Or anybody else? Thanks On Sat, Apr 25, 2009 at 6:23 AM, balingen