inmethod grid

2010-07-01 Thread nino martinez wael
Wondering if there are any active developers on inmethod? A while ago I wrote that I had 2 components that I wanted to contribute, so should I just add them or? I guess if no one answers it's a silent yes ? -nino

Re: open Modal Window without AjaxRequestTarget

2010-07-01 Thread Richard Nichols
The dialog component in visural-wicket has an onclick behavior which will open or close the dialog without an Ajax callback. http://visural-wicket-examples.appspot.com/app/dialog On 1 July 2010 08:03, Pierre Goupil goupilpie...@gmail.com wrote: Hello, I'm well aware of

RE: open Modal Window without AjaxRequestTarget

2010-07-01 Thread Stefan Lindner
See ModalWindow.getWindowOpenJavascript() and use it like this ModalWindow myModalWindow = new ModalWIndow.. someComponent.add(new SimpleAttributeModifier(onclick, myModalWindow.getWindowOpenJavascript())); I didn't try I but I think it should work like this. Stefan

Re: How to override container markup package loaction?

2010-07-01 Thread Ernesto Reinaldo Barreiro
Arjun, Did you give it a try to Application.getResourceSettings().addResourceFolder(xxx)? I don't remember having used it myself but method's JavaDoc hints it might do what you want. Ernesto On Thu, Jul 1, 2010 at 7:57 AM, Arjun Dhar dhar...@yahoo.com wrote: How does one override container

Re: Rerender modal window fields without ajaxtargetrequest

2010-07-01 Thread Ernesto Reinaldo Barreiro
Anna, You mean how to access AjaxRequestTarget? Try AjaxRequestTarget.get(): I think it can be accessed as a thread local. Ernesto On Thu, Jul 1, 2010 at 3:22 AM, Anna Simbirtsev asimbirt...@gmail.com wrote: Hi, AjaxSubmitLink removeLink = new AjaxSubmitLink(removeLink) { @Override public

Re: Mulitple Forms in ListView

2010-07-01 Thread TH Lim
Sorry I didn't test it before I replied. Your solution didn't work because for non-Ajax submit both forms r submitted. Non-ajax submit submits the page instead of individual form in Ajax style. -- View this message in context:

Re: How to customize the pages of a DataTable, DataView or DataGrid.

2010-07-01 Thread midikem
The load by each page i fixed with my sql where i picked out a sequence of data. Makes the defaultdatatable works fine in my oppinion. -- View this message in context:

Re: open Modal Window without AjaxRequestTarget

2010-07-01 Thread Pierre Goupil
I'll give that a try, men. Thank you! Regards, Pierre On Thu, Jul 1, 2010 at 8:21 AM, Stefan Lindner lind...@visionet.de wrote: See ModalWindow.getWindowOpenJavascript() and use it like this ModalWindow myModalWindow = new ModalWIndow.. someComponent.add(new

Re: question about adding synchronized on mountsOnPath at WebRequestCodingStrategy

2010-07-01 Thread dannyboy
Hot spot is gone. -Danny -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/question-about-adding-synchronized-on-mountsOnPath-at-WebRequestCodingStrategy-tp1878901p2274801.html Sent from the Wicket - User mailing list archive at Nabble.com.

Fwd: [Travel Assistance] - One week until Applications for financial assistance ends for ApacheCon NA 2010

2010-07-01 Thread Martijn Dashorst
-- Forwarded message -- From: Gav... ga...@16degrees.com.au Date: Thu, Jul 1, 2010 at 7:13 AM Subject: [Travel Assistance] - One week until Applications for financial assistance ends for ApacheCon NA 2010 Hi All, There is only ONE WEEK to go before we stop accepting applications

Re: inmethod grid

2010-07-01 Thread Charles Deal
I believe Matej is the only developer. I also have code to contribute to the project. Considering it is a WicketStuff project, I suppose that we could make the changes ourselves. I posted my changes as patches in order to get some feedback, but I received no comments for or against my proposed

signinpanel and base64

2010-07-01 Thread Mathias
Hi, i have a problem with the wicket signinpanel/form and non-ascii (Swedish) characters. Whenever a user enters a username with, for example 'å', i get an exception: java.lang.IllegalArgumentException: Control character in cookie value, consider BASE64 encoding your value at

Re: signinpanel and base64

2010-07-01 Thread Pedro Santos
one way around is to set the form as not persistent and don't present the rememberMe checkbox On Thu, Jul 1, 2010 at 7:35 AM, Mathias math...@afjochnick.net wrote: Hi, i have a problem with the wicket signinpanel/form and non-ascii (Swedish) characters. Whenever a user enters a username

Re: signinpanel and base64

2010-07-01 Thread Mathias
Hey, thanks for the feedback mate. Well, i'm afraid that the remember me is required, so it has to be solved in some other way. Not sure where i would inject base64 encoding/decoding though. -- View this message in context:

Re: Request for how to process incoming E-mails on Google App Engine

2010-07-01 Thread Ian Marshall
I have set things up now to event code code in a new servlet, and I can now access the in-coming E-mail message too. Thank you for the tip. -- View this message in context:

question abaut form

2010-07-01 Thread Dawid Strzelczyk
Hi, I have a question about form creation. new Form what type should be here Best regards

Re: question abaut form

2010-07-01 Thread James Carman
What type of object are you editing? On Thu, Jul 1, 2010 at 7:41 AM, Dawid Strzelczyk dawstr1...@gmail.com wrote: Hi, I have a question about form creation. new Form what type should be here Best regards - To

Re: question abaut form

2010-07-01 Thread Dawid Strzelczyk
On this form i have only 2 buttons: Add Product to Basket and Continue Shopping. 2010/7/1 James Carman ja...@carmanconsulting.com What type of object are you editing? On Thu, Jul 1, 2010 at 7:41 AM, Dawid Strzelczyk dawstr1...@gmail.com wrote: Hi, I have a question about form creation.

Re: question abaut form

2010-07-01 Thread James Carman
So, do you even need a form? These could be links. On Thu, Jul 1, 2010 at 8:00 AM, Dawid Strzelczyk dawstr1...@gmail.com wrote: On this form i have only 2 buttons: Add Product to Basket and Continue Shopping. 2010/7/1 James Carman ja...@carmanconsulting.com What type of object are you

Re: question abaut form

2010-07-01 Thread James Carman
To answer your question, you can use new FormVoid() On Thu, Jul 1, 2010 at 8:10 AM, James Carman ja...@carmanconsulting.com wrote: So, do you even need a form?  These could be links. On Thu, Jul 1, 2010 at 8:00 AM, Dawid Strzelczyk dawstr1...@gmail.com wrote: On this form i have only 2

Re: question abaut form

2010-07-01 Thread James Carman
Or... new FormProduct On Thu, Jul 1, 2010 at 8:10 AM, James Carman ja...@carmanconsulting.com wrote: To answer your question, you can use new FormVoid() On Thu, Jul 1, 2010 at 8:10 AM, James Carman ja...@carmanconsulting.com wrote: So, do you even need a form?  These could be links. On

Re: question abaut form

2010-07-01 Thread Dawid Strzelczyk
Thanks a lot, sorry for newbie questions :) Dawid 2010/7/1 James Carman ja...@carmanconsulting.com Or... new FormProduct On Thu, Jul 1, 2010 at 8:10 AM, James Carman ja...@carmanconsulting.com wrote: To answer your question, you can use new FormVoid() On Thu, Jul 1, 2010 at 8:10 AM,

Re: signinpanel and base64

2010-07-01 Thread Pedro Santos
If you have non ascii characters on your cookie, it can to be problematic on tomcat considering that their understanding is that this is not allowed by RFC 2109. You can require help to customize the cookie header parser on the tomcat user list. http://www.ietf.org/rfc/rfc2109.txt NAME=VALUE

Re: inmethod grid

2010-07-01 Thread nino martinez wael
I'd say we give Matej til tomorrow, and then we put in our changes? I tried to get a hold of Matej on facebook, but no answer.. And I know at least one who would like to use my changes.. 2010/7/1 Charles Deal chuckdea...@gmail.com I believe Matej is the only developer. I also have code to

Re: signinpanel and base64

2010-07-01 Thread Pedro Santos
Hi, actually you can solve the problem by providing an IValuePersister to the username text field that encode the value before set it on the cookie an then decode it on access. It can to be done by implementations of: IValuePersister#save(String, String) and IValuePersister#load(String) To provide

Re: debugging PageExpiredExceptions

2010-07-01 Thread Martijn Dashorst
On Thu, Jul 1, 2010 at 2:30 AM, sbrookes2 seanbroo...@shaw.ca wrote: It turns out that isn't the only source of these messages as it seems to be related to using AJAX behaviors on stateless pages causing the pagemap to either lose or remove references to certain pages so that when an AJAX

Re: inmethod grid

2010-07-01 Thread Martijn Dashorst
Matej is busy getting rich from his iPhone application called Air Video (http://inmethod.com). Note that the website is running brix cms. Martijn On Thu, Jul 1, 2010 at 2:49 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: I'd say we give Matej til tomorrow, and then we put in our

How to show / hide individual column of a DefaultDataTable using Ajax?

2010-07-01 Thread Erich W Schreiner
Dear all, I'm trying to implement an Ajax button for showing / hiding some columns of a DefaultDataTable based on a Boolean associated with a custom session. Currently I have implemented an AttributeModifier that sets the style to display:none on the hidden columns. This is working fine for

javascript message after ajax request

2010-07-01 Thread Maris Orbidans
Wicket experts, I have a form with Ajax submit button. Upon completing ajax request I want to show javascript popup with a message from server. How to do it ? Maris - To unsubscribe, e-mail:

Re: javascript message after ajax request

2010-07-01 Thread Pedro Santos
you can use the appendJavascript method from the AjaxRequestTarget like: target.appendJavascript (alert('some message')); On Thu, Jul 1, 2010 at 1:21 PM, Maris Orbidans maris.orbid...@ingg.comwrote: Wicket experts, I have a form with Ajax submit button. Upon completing ajax request I want

Re: javascript message after ajax request

2010-07-01 Thread Alex Objelean
The best approach is to use AjaxCallDecorator: new AjaxLinkVoid(id) { @Override protected IAjaxCallDecorator getAjaxCallDecorator() { return new AjaxCallDecorator() { @Override public CharSequence decorateOnSuccessScript(CharSequence script) {

RE: javascript message after ajax request

2010-07-01 Thread Maris Orbidans
Awesome, thanks. -Original Message- From: Pedro Santos [mailto:pedros...@gmail.com] Sent: 01 July 2010 17:25 To: users@wicket.apache.org Subject: Re: javascript message after ajax request you can use the appendJavascript method from the AjaxRequestTarget like:

Re: inmethod grid

2010-07-01 Thread nino martinez wael
Heh, I guess he don't mind the additions me and Charles have made then. Only thing about my code are that my delete button are using a workaround to be functional, otherwise i'd have to change Matejs core code so it supports inheritance better.. Nice that his site are running brix, and also

Re: Wicket Sessions and Load Balancing

2010-07-01 Thread nino martinez wael
Hi Steven Unfortunately I havent been using the proxy for balancing for a while now.. But I know it works flawlessly with mod_jk, and if your using jetty you can also get that running. http://docs.codehaus.org/display/JETTY/Configuring+AJP13+Using+mod_jk . Otherwise i'd go to the httpd forum

Re: Rerender modal window fields without ajaxtargetrequest

2010-07-01 Thread Anna Simbirtsev
Thank you, I'll try it. 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. Ernesto On Thu, Jul 1, 2010 at 3:22 AM, Anna Simbirtsev

Re: open Modal Window without AjaxRequestTarget

2010-07-01 Thread Pierre Goupil
Good evening, I tried it but nothing shows. My Firebug gives this error: either src or element must be set I did use setContent()! Can anyone help, please? Regards, Pierre On Thu, Jul 1, 2010 at 9:41 AM, Pierre Goupil goupilpie...@gmail.comwrote: I'll give that a try, men. Thank you!

How to clear a TextField input?

2010-07-01 Thread David Chang
I have a form where it has two elements: AjaxCheckbox and TextField. When the checkbox is un-checked, the TextField in browser should look blank. Here is the code I have: final TextField input = new TextField(myinput) { void onBeforeRender() { super.onBeforeRender(); if (certain way to get

Re: How to clear a TextField input?

2010-07-01 Thread Igor Vaynberg
set the model object to null as well. -igor On Thu, Jul 1, 2010 at 3:25 PM, David Chang david_q_zh...@yahoo.com wrote: I have a form where it has two elements: AjaxCheckbox and TextField. When the checkbox is un-checked, the TextField in browser should look blank. Here is the code I have:

Re: How to clear a TextField input?

2010-07-01 Thread David Chang
igor, thank you for the tip. that works. best. --- On Thu, 7/1/10, Igor Vaynberg igor.vaynb...@gmail.com wrote: From: Igor Vaynberg igor.vaynb...@gmail.com Subject: Re: How to clear a TextField input? To: users@wicket.apache.org Date: Thursday, July 1, 2010, 6:32 PM set the model object

Re: inmethod grid

2010-07-01 Thread Charles Deal
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 at 1:16 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Heh, I guess he don't mind the additions me and

dropdownchoice onchange event called before propertymodel updates

2010-07-01 Thread goody44
Hi, I have a dropdownchoice which determines what details that a form holds. The problem that I am having is that the ajax event is being called before the property model updates the field. So the addVehicleFormPanel is being rendered with the old value and now the new selected one. Hopefully

WaspSession,can not get parameter inside

2010-07-01 Thread wu
Dear all, Please help me that: public class AuthenticatedWebSession extends WaspSession { private User user; public User getUser() { return user; } public void setUser(User user) { this.user = user; } } ALso , when i login , have set the value:

Re: extending AbstractFormValidator as a validation adapter

2010-07-01 Thread Ray Weidner
Thanks for your reply, Jeremy. I just got around to reading it. I had been under the impression that I'd have to call something from the #onSubmit to trigger the feedback, but I tried it out based on your suggestion, and it fits the bill. This deferred validation is actually pretty useful in a

wantOnSelectionChangedNotifications and form components. and keeping state

2010-07-01 Thread Brown, Berlin [GCG-PFS]
I have an object in session and want to keep the state of those values when I refresh a page or my form submits back to the page. Do I have to add on every component? It seems that I do. Also, how do I add want on selection change but NOT have it perform a form submit. public boolean

Re: How to override container markup package loaction?

2010-07-01 Thread Arjun Dhar
Hey Ernesto, so I tried that. Application.getResourceSettings().addResourceFolder(xxx) only works for resources. So if I have a (Page A) extends (Page B). Then only the markup of Page A comes; Wicket does not seem to respect Markup Inheritance etc. when adding as resource. My fear is that the