Re: Reseting a textField of an upload form

2012-10-05 Thread Sébastien Gautrin
You can actually put the wicket namespace for child pages and components, wicket will only use for its rendering what's inside wicket:extends for the child pages, and what's inside wicket:panel for your panels (as well as what's in wicket:head for header contributions). antechrestos wrote:

Re: performance on nested dataviews

2012-10-05 Thread vineet semwal
i am curious what kind of a user uses 200 columns,what is the use case? datatable can't give you better performance unless i am missing some point .i just checked datable's source beriefly. what you need is a dynamic/partial updating repeater for columns so say if a row has 50 columns visible at

select a wicket tab from javascript...

2012-10-05 Thread mlabs
I have some wicket (ajax) tabs... I'm using jQuery on the client. I want to programatically select a particular wicket tab from the jQuery/javascript client code what's the best way to do this? TIA -- View this message in context:

wire legacy ajax (jquery) widget to Wicket page

2012-10-05 Thread Simon B
Hi, I've got a relatively complex jquery filter widget (for a property listings site) which allows users to filter properties using a number of criteria (neigbourhood, price range, property type, bedrooms etc). The widget works well (at least on the old site) and I want to carry on using it on

Re: Problem in Localizing submit button

2012-10-05 Thread Martin Grigorov
Create a quickstart application and attach it to a ticket in Jira. On Fri, Oct 5, 2012 at 2:22 PM, mahulianand mahulian...@gmail.com wrote: i also tried it using wicket 1.5.8 but same problem any suggestions please. -- View this message in context:

IFormValidator with ajax

2012-10-05 Thread Oscar Besga Arcauz
Hi Wickers ! I'm using Wicket.6.0.x and I'm using an IFormValidator as a subclass o a form, attached to it by an FormValidatorAdapter. The form uses a AjaxSubmitLink to send data back. When it comes to validate method, the model objects of the form and the components are null; althougth later

Re: IFormValidator with ajax

2012-10-05 Thread Sven Meier
May I use the raw inputs instead of models ? You can use the converted input. Sven Oscar Besga Arcauz obe...@isdefe.es schrieb: Hi Wickers ! I'm using Wicket.6.0.x and I'm using an IFormValidator as a subclass o a form, attached to it by an FormValidatorAdapter. The form uses a

Reading a cookie in component constructor?

2012-10-05 Thread Ondrej Zizka
Hi, I have a component which sets a cookie in ajax response, and uses that cookie when rendering upon further requests to the page. But it doesn't work. Is there something wrong on the code below? I have checked that the cookie is set - Firefox's Web Developer plugin shows it in successive

Re: Wicket 6 and Atmosphere framework integration

2012-10-05 Thread Martin Grigorov
Hi, Maybe it is related to https://github.com/Atmosphere/atmosphere/issues/595 Describe your issue there in more details. Error pages hurt me doesn't explain what kind of sadists are they :-) On Fri, Oct 5, 2012 at 4:37 PM, esajjkh programmer.saj...@gmail.com wrote: Hello Martin, Great, wicket

Re: Modify markup of inherited page - merge title tags

2012-10-05 Thread rza
Hi guys, I tried another time - and am quite happy with the result. The 'trick' was to do all the title related stuff on the page itself - after the complete (inherited) markup has been parsed. Let the code speak: TitleModel.java TitleTagHandler.java WicketApplication .java BasePage.java

Re: Re: IFormValidator with ajax

2012-10-05 Thread Oscar Besga Arcauz
Ok, it works fine Thaks ! Oscar Besga Arcauz -Sven Meier s...@meiers.net escribió: - Para: users@wicket.apache.org De: Sven Meier s...@meiers.net Fecha: 05/10/2012 15:01 Asunto: Re: IFormValidator with ajax May I use the raw inputs instead of models ? You can use the

Re: [Announce] wicket-dashboard

2012-10-05 Thread Decebal Suiu
Hi I divided the project in modules and sub-modules: - core - demo - widgets (repository for widgets: ofchart - open flash chart and loremipsum - for test only) Also I found a DI solution relative smooth. My solution is based on these entities: DashboardContext, DashboardContextAware,

WiQuery: Having trouble getting dynamically added AutocompleteAjaxComponent to work

2012-10-05 Thread Tobias Gierke
Hi all, I'm building a generic 'Search' form where the user dynamically constructs the search criteria by picking a constraint type and then filling out the fields associated with the selected constraint type. Depending on the select constraint type, one or more form fields are dynamically

Wicket page HTML extractor

2012-10-05 Thread Oscar Besga Arcauz
Hi wickers ! I want to generate the HTML from a wicket WebPage and store into a String; out of a request - for example in a timer thread. I'm thinking in making a buffer (inter request) for my webapplication for some pages, for this I want to extract HTML-generated content from wicket pages.

RE: Problem in Localizing submit button

2012-10-05 Thread Paul Bors
In the mid time you could look to the Java code and provide the model for the VALUE attribute of the button (I know that works :) http://wicket.apache.org/apidocs/1.5/org/apache/wicket/markup/html/form/Button.html#Button(java.lang.String, org.apache.wicket.model.IModel) ~ Thank you, Paul

RE: Problem in Localizing submit button

2012-10-05 Thread Paul Bors
You can always use myButton.add(new AttributeModifier(value, new ResourceModel(my.language.pack.key))) :) But yes, someone should open the Jira with the quick start and also mention the improvement for the button html tag itself. ~ Thank you, Paul Bors -Original Message- From: