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
protected void onEvent(AjaxRequestTarget art) {

}
});

bye, lorenzo



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/catch-the-paste-event-tp4661765.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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); 
System.err.println(event.getSource().toString());
}

});



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/catch-the-paste-event-tp4661765p4661767.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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: 
http://apache-wicket.1842946.n4.nabble.com/UPDATE-A-COMPONENT-INTO-DATATABLE-tp4661556.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 the table dont
function.
why?

bye, lorenzo 



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Problem-with-ajax-when-I-use-ModalWindow-tp4660636.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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:

add(JQBehaviors.js(alert('this page uses jquery!')));

and in homepage.html:


!DOCTYPE html PUBLIC quot;-//W3C//DTD XHTML 1.0 Transitional//ENquot;
quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtdquot;
html xmlns=http://www.w3.org/1999/xhtml;
xmlns:wicket=http://wicket.apache.org/; xml:lang=en lang=en
head
/head
body
/body
/html

.


bye








--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/jqwicket-problem-tp4657794.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 context: 
http://apache-wicket.1842946.n4.nabble.com/display-a-set-of-data-table-tp4655886.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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: 
http://apache-wicket.1842946.n4.nabble.com/display-a-set-of-data-table-tp4655886p4655889.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org