Re: inmethod grid

2010-07-02 Thread nino martinez wael
Ok i'll put in my stuff when I get time, hopefully during next week.. 2010/7/2 Charles Deal chuckdea...@gmail.com Some of my changes alter the inmethod core to facilitate inheritance too. If the change is in the name of a more extensible component, than I say go for it. On Thu, Jul 1, 2010

modal window and its css

2010-07-02 Thread Fernando Wermus
Hi all, I am using modal window in conjunction with a page. This page has a css contributor. But there is something wrong with the page into the modal window. The text inputs don't show correctly. It seems that the modal window css is working over the page. I thought that the page was into an

Re: Wicket Sessions and Load Balancing

2010-07-02 Thread Erik van Oosten
Steven, Have you tried to enforce creation of a session on the home page? A WebSession.get().bind() in the homepage will do the trick. This only makes a difference when your homepage is stateless. Regards, Erik. 2010/7/1 Steven Haineslyg...@yahoo.com My guess is that when the homepage

Re: dropdownchoice onchange event called before propertymodel updates

2010-07-02 Thread vov
Can you post more code from your example? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/dropdownchoice-onchange-event-called-before-propertymodel-updates-tp2275897p2276047.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: javascript message after ajax request

2010-07-02 Thread Martin Grigorov
AjaxButton submitButton = new AjaxButton(wid, form) { public void onSubmit(AjaxRequestTarget target) { // your logic here targer.appendJavascript(showPopup(document.getElementById('myPopupId'))); } } On Thu, 2010-07-01 at 17:21 +0100, Maris Orbidans wrote: Wicket experts, I have

Correct way of setting charset

2010-07-02 Thread Sigmar Muuga
Hello, what is the correct way of setting my pages charset? I did something like this and it didnt have any effect: @Override protected void configureResponse() { super.configureResponse(); final String encoding = text/ + getMarkupType() + ; charset=UTF-8; getResponse().setContentType(encoding);

Re: Refreshing DataView fails if it was initially empty

2010-07-02 Thread vov
Use setOutputMarkupPlaceholderTag(true) for your component -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Refreshing-DataView-fails-if-it-was-initially-empty-tp2273568p2276085.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Markup Inheritance example with Ajax?

2010-07-02 Thread heapifyman
Am 25.06.2010 20:09, schrieb Jeremy Thomerson: If you want to do this, you are basically using the single-page paradigm where your content is always a panel. Basically you just create a single page, and then all of your content goes into panels instead of pages with markup inheritance. Then

StringHeaderContributor from a panel added by AJAX

2010-07-02 Thread Steve Swinsburg
Hi, I have a panel that I add via AJAX to my page. On this panel I have a StringHeaderContributor block that I want to add. It's not doing anything. Does this not work when added via AJAX? The same code works fine when on a normal page. String altText = some value from an i18n properties

Wicketstuff-core configuration

2010-07-02 Thread Martin Grigorov
Hi, This morning I saw that I broke wicketstuff-core for a second time with my changes in sub-projects. Apologies ! wicket-stuff trunk #5439: [mocleiri] fixes the org.eclipse.jetty dependency in push-parent/push-examples that was breaking the build. The ${jetty.version} property redefined in the

Re: StringHeaderContributor from a panel added by AJAX

2010-07-02 Thread nino martinez wael
Im have you tried implementing the headercontributor Interface in your ajax component instead of using the headercontributor directly? regards Nino 2010/7/2 Steve Swinsburg steve.swinsb...@gmail.com Hi, I have a panel that I add via AJAX to my page. On this panel I have a

Re: Wicketstuff-core configuration

2010-07-02 Thread nino martinez wael
Just go ahead, if it does not breake anything.. :) 2010/7/2 Martin Grigorov mcgreg...@e-card.bg Hi, This morning I saw that I broke wicketstuff-core for a second time with my changes in sub-projects. Apologies ! wicket-stuff trunk #5439: [mocleiri] fixes the org.eclipse.jetty dependency

Re: component .... not found on page for a Link colun in the Datatable after self refresh using the AjaxSelfUpdatingTimerBehavior

2010-07-02 Thread cristina.vlaicu
Hello, Have you found the resolution to this problem? Thank you! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/component-not-found-on-page-for-a-Link-colun-in-the-Datatable-after-self-refresh-using-the-AjaxSelfUr-tp1892913p2276311.html Sent from the Wicket - User

[OT How can I open an account on jRoller?

2010-07-02 Thread Erich W Schreiner
Dear list, the jRoller site has disabled signup for a accounts. Does anybody know whom I can contact for a new account? TIA best regards have a nice weekend! Erich

Re: component .... not found on page for a Link colun in the Datatable after self refresh using the AjaxSelfUpdatingTimerBehavior

2010-07-02 Thread bjolletz
Hi, My conclusion is that this is not really a wicket error, since we're clicking a link which no longer exists after the Ajax update. My solution to this has been to catch these exceptions in my WebRequestCycleProcessor, like this: @Override public IRequestTarget resolve(RequestCycle

Re: [OT How can I open an account on jRoller?

2010-07-02 Thread Martijn Dashorst
Wrong list... Martijn On Fri, Jul 2, 2010 at 1:28 PM, Erich W Schreiner eschrei...@yahoo.com wrote: Dear list, the jRoller site has disabled signup for a accounts. Does anybody know whom I can contact for a new account? TIA best regards have a nice weekend! Erich -- Become a Wicket

Re: component .... not found on page for a Link colun in the Datatable after self refresh using the AjaxSelfUpdatingTimerBehavior

2010-07-02 Thread vov
Try to use AjaxLink(iconLink) instead your Link(iconLink) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/component-not-found-on-page-for-a-Link-colun-in-the-Datatable-after-self-refresh-using-the-AjaxSelfUr-tp1892913p2276332.html Sent from the Wicket - User mailing

Re: StringHeaderContributor from a panel added by AJAX

2010-07-02 Thread Steve Swinsburg
Thanks, but the ajax component is actually just a datepicker from jQuery so it's not Wicket related. I think I'll need to get my Javascript to load the message bundle directly so it doesn't need to go via Wicket. cheers, Steve On 02/07/2010, at 6:46 PM, nino martinez wael wrote: Im have you

Re: open Modal Window without AjaxRequestTarget

2010-07-02 Thread Michał Letyński
Hi. You must make content visible manually since its done in show(ajaxtarget) method. So override makeVisible() method from modal window or just set getContent().setVisible(true) in onBeforeRender. W dniu 2010-07-01 20:59, Pierre Goupil pisze: Good evening, I tried it but nothing shows. My

Re: Refreshing modal window

2010-07-02 Thread Anna Simbirtsev
Hi, it does not work. On Wed, Jun 30, 2010 at 6:35 PM, Nelson Segura nsegu...@gmail.com wrote: To execute javascript after AJAX, do the following ajaxRequestTarget.appendJavascript(alert('hello');); To jump to a section using javascript use window.location.hash = '#idname'; You can

Re: Rerender modal window fields without ajaxtargetrequest

2010-07-02 Thread Anna Simbirtsev
I get a null pointer exception, I think the AjaxRequestTarget.get() returns null. On Thu, Jul 1, 2010 at 2:41 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Anna, You mean how to access AjaxRequestTarget? Try AjaxRequestTarget.get(): I think it can be accessed as a thread local.

Re: Refreshing modal window

2010-07-02 Thread Anna Simbirtsev
I think because its a modal window, it has the same url as the parent window. On Fri, Jul 2, 2010 at 9:47 AM, Anna Simbirtsev asimbirt...@gmail.comwrote: Hi, it does not work. On Wed, Jun 30, 2010 at 6:35 PM, Nelson Segura nsegu...@gmail.com wrote: To execute javascript after AJAX, do the

fancy javascript effects in wicket

2010-07-02 Thread Chris Colman
I was considering adding some fancy javascript effects to some of my wicket pages/components. While googling I saw references to dojo and jQuery integrations with Wicket. Which is better, up to date, more actively supported etc.,?

Animating the opening of a modal window

2010-07-02 Thread Chris Colman
Is it possible to animate the opening of a modal window using wicket? I know it can be done in javascript but I'm wondering how I go about it with wicket. Do I need to install a javascript framework and somehow invoke its features from Wicket?

Re: StackOverFlowError

2010-07-02 Thread robert.mcguinness
this happened to me the other day. turned out to be a coding error. i wrapped a compoundpropertymodel in a propertylistview (which already wraps a model into a compoundpropertymodel). once the code was fix the problem went away. my data set was also large. about 1000 rows in a table being

Re: extending AbstractFormValidator as a validation adapter

2010-07-02 Thread Igor Vaynberg
validation is needed because you cant stuff abc into an Integer field, so it cannot be turned off completely. if you dont add any validators and dont call setrequired then you should be good to go because the only remaining bit wicket will do before pushing into your models is type checking and

Re: StackOverFlowError

2010-07-02 Thread Douglas Ferguson
Hmm... I don't really follow. On Fri, Jul 2, 2010 at 11:31 AM, robert.mcguinness robert.mcguinness@gmail.com wrote: this happened to me the other day. turned out to be a coding error. i wrapped a compoundpropertymodel in a propertylistview (which already wraps a model into a

Re: How to override container markup package loaction?

2010-07-02 Thread Igor Vaynberg
there is a wiki page on how to change where markup is loaded from. -igor On Wed, Jun 30, 2010 at 10:57 PM, Arjun Dhar dhar...@yahoo.com wrote: How does one override container markup package loaction? If I provide mysite.wicket.pages for my Java Wicket components, then the html markup must

Re: StackOverFlowError

2010-07-02 Thread Igor Vaynberg
setresponsepage(new mypage(thispage)); or indirectly via an anonymous model class or something that holds a reference to the page. -igor On Fri, Jul 2, 2010 at 9:57 AM, Douglas Ferguson doug...@douglasferguson.us wrote: Hmm... I don't really follow. On Fri, Jul 2, 2010 at 11:31 AM,

Re: Rerender modal window fields without ajaxtargetrequest

2010-07-02 Thread Ernesto Reinaldo Barreiro
Then that probably means you are not making an AJAX round trip... public static AjaxRequestTarget get() { final RequestCycle requestCycle = RequestCycle.get(); if (requestCycle != null) { if

Re: How to override container markup package loaction?

2010-07-02 Thread Ernesto Reinaldo Barreiro
https://cwiki.apache.org/WICKET/control-where-html-files-are-loaded-from.html ? On Fri, Jul 2, 2010 at 6:58 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: there is a wiki page on how to change where markup is loaded from. -igor On Wed, Jun 30, 2010 at 10:57 PM, Arjun Dhar

Re: Refreshing modal window

2010-07-02 Thread Anna Simbirtsev
I'm sorry, it actually works in IE, but not in Mozilla. Does anybody have any idea how to get it to work in Mozilla? Thank you On Fri, Jul 2, 2010 at 10:37 AM, Anna Simbirtsev asimbirt...@gmail.comwrote: I think because its a modal window, it has the same url as the parent window. On Fri,

Re: fancy javascript effects in wicket

2010-07-02 Thread Ernesto Reinaldo Barreiro
Hi Cris, I use WiQuery and it is rather complete, the project has an active community of developers and it is easy to get answers to your questions on their forum. I haven't tried jWicket but I've seen Stefan Lidner is very active in this list and from time to time he announces new versions of

Re: Nested Repeaters in an HTML Table -- Uggh!

2010-07-02 Thread Martin Makundi
What is your problem with this? Inheritance? ** Martin 2010/7/2 duncan787 duncan...@gmail.com: I have been trying for several days to get this to work.  I am trying to write a generic Wicket Panel that I can reuse to display columns and rows from any given datasource. The generic Panel

Re: Nested Repeaters in an HTML Table -- Uggh!

2010-07-02 Thread Zilvinas Vilutis
Show your component code and the error if you want someone to help this problem fixed. Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Fri, Jul 2, 2010 at 12:58 PM, duncan787 duncan...@gmail.com wrote: I have been trying for several days to get this to work. I

Re: Nested Repeaters in an HTML Table -- Uggh!

2010-07-02 Thread Ernesto Reinaldo Barreiro
Why not use DataGridView? On Fri, Jul 2, 2010 at 9:58 PM, duncan787 duncan...@gmail.com wrote: I have been trying for several days to get this to work.  I am trying to write a generic Wicket Panel that I can reuse to display columns and rows from any given datasource. The generic Panel

Re: Nested Repeaters in an HTML Table -- Uggh!

2010-07-02 Thread Igor Vaynberg
wicket:panel table tr th wicket:id=columnNameRepeater[column name here]/th thactions/th /tr tr wicket:id=dataRowRepeater td wicket:id=columnRepeater[cell data here]/td tdinput type=submit wicket:id=delete value=delete//td /tr /table /wicket:panel -igor On Fri,

Re: debugging PageExpiredExceptions

2010-07-02 Thread sbrookes2
Thanks for the reply Martijn. I have done some poking around and I think this thread holds the key: http://apache-wicket.1842946.n4.nabble.com/PageExpiredException-ajax-request-td1878866.html#a1878866 PageExpiredException - ajax request It looks like our 'stateless' page gets rendered with

Re: PageExpiredException - ajax request

2010-07-02 Thread sbrookes2
igor.vaynberg wrote: requestcycle rc=getrequestcycle(); response orig=rc.getresponse(); rc.setresponse(new noopresponse()); page.render(); rc.setresponse(orig); -igor This may be a silly question but can you shed some light on the line: rc.setresponse(new noopresponse());

Wicket links does not work in Firefox/IE?

2010-07-02 Thread Duy Do
Hi all, I built a web app with Wicket and it works fine in Chrome, Safari but it does not work in Firefox and IE. In Firefox/IE after clicking on links of navigation, the corresponding page does not display but if I click refresh ( or F5) it is OK. Could you give me a solution to get rid of this

Re: PageExpiredException - ajax request

2010-07-02 Thread Igor Vaynberg
org.apache.wicket.response.NullResponse -igor On Fri, Jul 2, 2010 at 5:38 PM, sbrookes2 seanbroo...@shaw.ca wrote: igor.vaynberg wrote: requestcycle rc=getrequestcycle(); response orig=rc.getresponse(); rc.setresponse(new noopresponse()); page.render(); rc.setresponse(orig); -igor

Re: StringHeaderContributor from a panel added by AJAX

2010-07-02 Thread nino martinez wael
yeah im just talking about implementing the interface instead of using the class directly.. I've seen it working, instead of using implementation.. 2010/7/2 Steve Swinsburg steve.swinsb...@gmail.com Thanks, but the ajax component is actually just a datepicker from jQuery so it's not Wicket