Re: Custom AJAX component...

2010-08-19 Thread Ernesto Reinaldo Barreiro
Erik, Its been a while since I implemented that code but as far as I remember the CDATA parts are embedded in a bigger XML wich is streamed back to the client: CDATA is needed because grid cell contents can be anything so you have to use it to make sure that the XML you stream back is well

Re: Problem AjaxFormChoiceComponentUpdatingBehavior IE7

2010-08-19 Thread Alexander
I think you should create Form component and attach RadioChoice instance to in. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problem-AjaxFormChoiceComponentUpdatingBehavior-IE7-tp2330305p2330741.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: possible bug?

2010-08-19 Thread vladimir.kovalyuk
There is JIRA issue for the problem https://issues.apache.org/jira/browse/WICKET-2933 https://issues.apache.org/jira/browse/WICKET-2933 Igor I believe what you wrote works fine for single form. But when the page contains nested forms the outer form still finds component - inner form. -- View

AbstractDefaultAjaxBehavior - Could not find root ajax-response element

2010-08-19 Thread Thierry Peng
Hello I have a resourcelink where I need to add an ajaxcallback to recalculate and update the current panel. I added an AbstractDefaultAjaxBehavior to that link with the callback, but the respond method was never invoked. In the wicket ajax debug i saw the following input: *INFO: *Using

AutoCompleteTextField

2010-08-19 Thread Patrick Petermair
Hi! Is it possible to get the AutoCompleteTextField to return a list of all available choices when the user presses the downward key? I tried to return an iterator for the full list when the input of getChoices(String input) is empty, but this only works when the user presses the space key.

Re: AutoCompleteTextField

2010-08-19 Thread armandoxxx
You need to be able to select multiple items from autocomplete dropdown list with just DOWN key ??? why do you need this kind of behavior ? King regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AutoCompleteTextField-tp2331099p2331117.html Sent

Re: AutoCompleteTextField

2010-08-19 Thread Patrick Petermair
armandoxxx schrieb: You need to be able to select multiple items from autocomplete dropdown list with just DOWN key ??? No, I want to select a single item - but out of a list of all the items. Take the example at: www.wicket-library.com/wicket-examples/ajax/autocomplete The user starts

Re: AutoCompleteTextField

2010-08-19 Thread Matthias Keller
On 2010-08-19 15:00, Patrick Petermair wrote: armandoxxx schrieb: You need to be able to select multiple items from autocomplete dropdown list with just DOWN key ??? No, I want to select a single item - but out of a list of all the items. Take the example at:

Re: can I enable/disable submit button while customer working on form?

2010-08-19 Thread Alexander Morozov
Hi! You just change internal state of delete button to invisible. But it seems that you forgot to refresh the entire form or just _delete_button component with AjaxRequestTarget (every components that should be refreshed by AJAX must have markup ID and should be added to AjaxRequestTarget

Re: AutoCompleteTextField

2010-08-19 Thread armandoxxx
I get it now ! try checking this ! http://wicket.apache.org/apidocs/1.4/org/apache/wicket/extensions/ajax/markup/html/autocomplete/AutoCompleteSettings.html Kind regards Armando -- View this message in context:

Re: AutoCompleteTextField

2010-08-19 Thread Patrick Petermair
Matthias Keller schrieb: Use: AutoCompleteSettings settings = new AutoCompleteSettings(); settings.setShowListOnEmptyInput(true); settings.setShowListOnFocusGain(true); // and possibly other settings as needed And then specify those settings in the constructor.. Thanks! Works like a charm.

Re: URL pattern /app/* does not work for Wicket 1.4.6 and WebSphere 6.1

2010-08-19 Thread shetc
Hi All, I'm still having this issue where I can't use a filter pattern as follow: filter-mapping filter-nameWicketFilter/filter-name url-pattern/app/*/url-pattern /filter-mapping I simplified my test application so it creates a HomePage with a Link -- click on the link and the app

Re: AbstractDefaultAjaxBehavior - Could not find root ajax-response element

2010-08-19 Thread Thierry Peng
Some additional info;rmation; this error occurs with the mozilla firefox 3.6.8 while the same code works with the internet explorer 8. Now I'm really confused... I works also with chrome v5 and opera 10.10 Thierry Peng schrieb: Hello I have a resourcelink where I need to add an ajaxcallback

RE: dynamically adding validators to TextFields in a ListView

2010-08-19 Thread Warren Bell
I have that working ok, but I am trying to add an atribute to the TextField when it is invalid. The problem is that a new TextField is created when the page is rerendered. I have a workaround, but it is ugly. Any sugestions? -Original Message- From: Igor Vaynberg

Re: dynamically adding validators to TextFields in a ListView

2010-08-19 Thread Igor Vaynberg
setreuseitems(true) on the listview, its in the javadoc -igor On Thu, Aug 19, 2010 at 8:17 AM, Warren Bell warr...@clarksnutrition.com wrote: I have that working ok, but I am trying to add an atribute to the TextField when it is invalid. The problem is that a new TextField is created when the

Re: URL pattern /app/* does not work for Wicket 1.4.6 and WebSphere 6.1

2010-08-19 Thread Igor Vaynberg
you should try also adding /app/* to the filterMappingUrlPattern parameter of the wicket filter -igor On Thu, Aug 19, 2010 at 7:10 AM, shetc sh...@bellsouth.net wrote: Hi All, I'm still having this issue where I can't use a filter pattern as follow: filter-mapping    

Re: RadioGroup/Radio runtime exception

2010-08-19 Thread Major Péter
Hi, I'm also seeing time to time this exception with 1.4.8, the only difference is, that I'm using the radiogroup within a wizard. (the wizard buttons are Ajax buttons). Any thoughts, how could this happen? Thanks, Peter 2010-08-19 16:40 keltezéssel, Grafas írta: Hi all, we are using

Re: URL pattern /app/* does not work for Wicket 1.4.6 and WebSphere 6.1

2010-08-19 Thread shetc
I tried that as well Igor but still getting the 404 error. Can you advise me on where I can try and trace the root cause of the issue? -- View this message in context:

Re: URL pattern /app/* does not work for Wicket 1.4.6 and WebSphere 6.1

2010-08-19 Thread Igor Vaynberg
WebRequestCodingStrategy may be a good place to start -igor On Thu, Aug 19, 2010 at 10:33 AM, shetc sh...@bellsouth.net wrote: I tried that as well Igor but still getting the 404 error. Can you advise me on where I can try and trace the root cause of the issue? -- View this message in

Re: URL pattern /app/* does not work for Wicket 1.4.6 and WebSphere 6.1

2010-08-19 Thread James Carman
This only happens in WebSphere? What about using a Jetty Start.java testing application? On Thu, Aug 19, 2010 at 1:33 PM, shetc sh...@bellsouth.net wrote: I tried that as well Igor but still getting the 404 error. Can you advise me on where I can try and trace the root cause of the issue?

Re: URL pattern /app/* does not work for Wicket 1.4.6 and WebSphere 6.1

2010-08-19 Thread Igor Vaynberg
im going to guess its only websphere, it has pretty horrific support for filters. at least that is what ive gathered from watching this list for years. one thing to try is to switch to WicketServlet. -igor On Thu, Aug 19, 2010 at 11:51 AM, James Carman ja...@carmanconsulting.com wrote: This

Re: URL pattern /app/* does not work for Wicket 1.4.6 and WebSphere 6.1

2010-08-19 Thread James Carman
You'd think with all of the open source code out there that actually does work they could figure it out. :) On Thu, Aug 19, 2010 at 3:15 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: im going to guess its only websphere, it has pretty horrific support for filters. at least that is what ive

AutoCompleteTextField: converter seems to be ignored

2010-08-19 Thread Alexandros Karypidis
Hi, I'm using AutoCompleteTextFiled with Wicket 1.4.9. My model is a POJO that is specified as a generic: searchTextField = new AutoCompleteTextFieldSomePOJO(... Therefore I return an Iterator of such POJOs with: protected IteratorSomePOJO getChoices(String input) {

POST request comes as GET in wicket

2010-08-19 Thread ganesh.k...@gmail.com
I post using the following form form method=POST action=http://x.x.x.x/rootContext/subcontext; INPUT TYPE=text NAME=your_name VALUE=First Last INPUT TYPE=submit VALUE=Test this form /form But when I look up in wicket through

Re: URL pattern /app/* does not work for Wicket 1.4.6 and WebSphere 6.1

2010-08-19 Thread abdul
Checkout this thread http://apache-wicket.1842946.n4.nabble.com/Wicket-1-4-Websphere-6-1-td2309401.html -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/URL-pattern-app-does-not-work-for-Wicket-1-4-6-and-WebSphere-6-1-tp1891723p2331731.html Sent from the Wicket - User

Sort column header for PageableListView

2010-08-19 Thread deepa
Hi All, My project is already developed in Wicket framework. In which PageableListView is used to display number of records with pagination. Further i have to make this list sortable on clicking its column header. I could find examples given for DataTable to sort, but can anybody give me sample

Re: Sort column header for PageableListView

2010-08-19 Thread Anton Bessonov
Hi! Like this? https://cwiki.apache.org/confluence/display/WICKET/Simple+Sortable+DataTable+Example Best Regards, Anton Hi All, My project is already developed in Wicket framework. In which PageableListView is used to display number of records with pagination. Further i have to make this list

Re: POST request comes as GET in wicket

2010-08-19 Thread Alexander Morozov
Hi! You may look at Apache Wiki, for example, https://cwiki.apache.org/WICKET/render-strategies.html. PRG (post- redirect - get) - the default request processing strategy in the Wicket. -- View this message in context: