Re: Regarding WARN - (WebPageRenderer.java:162) v1.5.7

2012-09-24 Thread yesotaso
Just tested with 6.0: create new project: mvn archetype:generate -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=6.0.0 -DgroupId=com.mycompany -DartifactId=myproject -DarchetypeRepository=https://repository.apache.org/

Re: Regarding WARN - (WebPageRenderer.java:162) v1.5.7

2012-09-24 Thread yesotaso
Created WICKET-4780 https://issues.apache.org/jira/browse/WICKET-4780 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Regarding-WARN-WebPageRenderer-java-162-v1-5-7-tp4651245p4652288.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Regarding WARN - (WebPageRenderer.java:162) v1.5.7

2012-08-17 Thread yesotaso
Will do, at the moment trying to isolate the incident. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Regarding-WARN-WebPageRenderer-java-162-v1-5-7-tp4651245p4651325.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Regarding WARN - (WebPageRenderer.java:162) v1.5.7

2012-08-17 Thread yesotaso
Please disregard above comment... I was trying to reproduce mentioned warning with a staless page... with a straight 16 hours caffeinless brain... still no caffein I'll try to open JIRA ticket if I can ever remember I did all this... Anyway, I created a

Regarding WARN - (WebPageRenderer.java:162) v1.5.7

2012-08-15 Thread yesotaso
Sorry for non-informative title. The whole warning is: WARN - (WebPageRenderer.java:162) - The Buffered response should be handled by BufferedResponseRequestHandler I know in various places it is said to be harmless and I dont know if other people seeing this warning for the same reason as me...

Re: how to connect elements - label and input (checkbox)

2012-07-05 Thread yesotaso
I am not exactly sure if it is what you want but I used a decoretor for labeling task. public class SimpleDecorator extends Behavior implements IAjaxRegionMarkupIdProvider{ @Override public String getAjaxRegionMarkupId(Component component){ // This method is overriden from

Re: java pojo/Bean to generate html (textfield, dropdown,radio buttons)

2012-07-05 Thread yesotaso
While I absolutely agree with Thomas, I'd suggest using a text generator template like FTL, Ruby or even String#format will do as well :) Below is a FTL piece. package ${class.package.name}; import org.apache.wicket.markup.html.basic.Label; import org.apache.wicket.markup.html.panel.Panel;

Re: Cutomizing Default AutoComplete

2011-11-28 Thread yesotaso
I've decided that Panel descendant below autocomplete is redundant. So I've added an extra o.a.w.a.AbstractDefaultAjaxBehavior to handle onselect event, so far so good. -- View this message in context:

Cutomizing Default AutoComplete

2011-11-19 Thread yesotaso
Hello, As title says I am trying to customize the default AutoCompleteTextField provided by wicket. Things I've done so far: By imitating https://cwiki.apache.org/WICKET/autocomplete-using-a-wicket-model.html Object AutoComplete using wicket model got a textfield, By imitating