ONPASTE イベントでテキストを取得する際に問題に直面しています。5つのテキストボックスがあり、sinkEventを使用しているとします。次に、テキストボックスのいずれかに貼り付けられるテキストを取得するにはどうすればよいですか
public abc() {
super();
TextBox t1 = new TextBox();
TextBox t2 = new TextBox();
TextBox t3 = new TextBox();
TextBox t4 = new TextBox();
TextBox t5 = new TextBox();
sinkEvents( Event.ONPASTE );
}
@Override
public void onBrowserEvent(Event event) {
super.onBrowserEvent( event );
switch (DOM.eventGetType(event)) {
case Event.ONPASTE:
//Now here i want to read get the text which is going to be
//pasted in the any of the textbox
}
}