Re: DataPicker replaced

2013-01-23 Thread lc991
hi, why i don't find DataPiker class in wicket 6.0? was this class replaced? if yes, with what? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DataPicker-replaced-tp4655689p4655690.html Sent from the Users forum mailing list archive at Nabble.com.

DataPicker replaced

2013-01-23 Thread lc991
hi, why i don't find DataPiker class in wicket 6.0? was this class replaced? if yes, with what? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DataPicker-replaced-tp4655689.html Sent from the Users forum mailing list archive at Nabble.com.

Re: DataPicker replaced

2013-01-23 Thread lc991
thanks Paul -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DataPicker-replaced-tp4655689p4655711.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail:

display a set of data table

2013-01-29 Thread lc991
How can I display a set of DataTable. I don't known the tables number. es: T1|S1 T2|S1 T3|S1 1 23 23 2 1 23 23 2 1 23 23 2 1 23 23 2 1 23 23 2 bye -- View this message in

Re: display a set of data table

2013-01-29 Thread lc991
I create and inizialize a ListdefaultDataTable tables; then i create a ListView l = new ListView(list,table){ the problem is in the populateItem method of ListView. what should I write in this method. } excuse me for the bad english. -- View this message in context:

EVENT CHECK GROUP

2013-01-30 Thread lc991
how can I insert an event on groupCheck change? CheckGroup cg = new CheckGroup(numbersCheckGroup,new Model(nome)){ //i should do a delete operation } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/EVENT-CHECK-GROUP-tp4655928.html Sent from the

Re: EVENT CHECK GROUP

2013-01-30 Thread lc991
thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/EVENT-CHECK-GROUP-tp4655928p4655934.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail:

jqwicket problem

2013-04-06 Thread lc991
hi lorenzo, I have a problem with JQWicket because simple Example don't work I insert in application: @Override protected void init() { super.init(); getComponentPreOnBeforeRenderListeners().add(new JQComponentOnBeforeRenderListener()); } in my homePage.java:

session event

2013-06-07 Thread lc991
how I capture close windows event from user(from x in the upper right) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/session-event-tp4659287.html Sent from the Users forum mailing list archive at Nabble.com.

Re: session event

2013-08-01 Thread lc991
thanks !!! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/session-event-tp4659287p4660635.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Problem with ajax when I use ModalWindow

2013-08-01 Thread lc991
hello, In my page there is a defaultDataTable which conteins a button. Each button has a ajax behavour, when user press the button the application show a modal window. Before user press the buttons the ajaxupdate of the table function very well but when after user press button the ajaxupdate of

UPDATE A COMPONENT INTO DATATABLE

2013-09-27 Thread lc991
hi, I have a dataTable which contains label, textfield and normal property columns. I should update only labels element. When i add a label i add a panel which contains a label When i add a TextField i add a panel which contains a textField bye lorenzo -- View this message in context:

Auto add component

2013-09-27 Thread lc991
hi I add a component without wicket:id in html page. is this possible? bye -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Auto-add-component-tp4661566.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Auto add component

2013-09-27 Thread lc991
could I have a mini example? I've used wicket for only 2 months -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Auto-add-component-tp4661566p4661568.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Auto add component

2013-09-27 Thread lc991
??? I add a wicket component like Label, texfield ecc not html element. if i write getResponse.write() and after i add(new Label(componentName)) work? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Auto-add-component-tp4661566p4661570.html Sent from the

catch the paste event

2013-10-09 Thread lc991
hi, i have a problem to get selection text after ctrl-v event. Is there a method? the AjaxEventBehavior paste work but now i don't know to get a text. In javascript the text is in the Event e object but in wicket i don't find it. this.add(new AjaxEventBehavior(paste) { @Override

Re: catch the paste event

2013-10-09 Thread lc991
I add event on the my form, but how to get a text to Event e object? form.add(new AjaxFormSubmitBehavior(paste) { @Override public void onEvent(Component component, IEvent? event) { super.onEvent(component, event);