Re: wicket portlet with ajax

2012-10-05 Thread Ciocoiu Elvis
I solve it. The problem was the portlet-name must be equal with the string used by the wicket filter. Thank you. On Sat, Oct 6, 2012 at 1:25 AM, elvis.ciocoiu wrote: > Hello, > > I'm stuck building a portlet using wicketstuff-portlet-1.5.8 and deploying > it to liferay 6.1.1. My page renders ok b

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: Seb

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 Bors

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.

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 ad

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, Dashboard

Re: Re: IFormValidator with ajax

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

Re: Modify markup of inherited page - merge 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: 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 wrote: > Hello Martin, > Great, wicket 6.1.0 is rocking :) how

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 reques

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 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 AjaxSubmitLink to send

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: 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 wrote: > i also tried it using wicket 1.5.8 but same problem > any suggestions please. > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Problem-in

Re: wire legacy ajax (jquery) widget to Wicket page

2012-10-05 Thread Martin Grigorov
Hi, On Fri, Oct 5, 2012 at 12:30 PM, Simon B wrote: > 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 wel

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 t

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: http://apache-wicket.1842946.n4.nabble.com/select-a-wicket-

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 st

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 for the child pages, and what's inside for your panels (as well as what's in for header contributions). antechrestos wrote: Well it works fine! I will look for a