Hi all,
i have another navigation problem:
I want to leave the textarea with tab instead of using ctrl+tab,
therefore i have implemented following client-extension:
public class UIDachBasicTextArea extends UITextArea {
protected Object createBasicObject(Object [] args){
return new DachBasicTextArea();
}
protected void postInitializeState(){
//leave textarea ONLY with tab or shift-tab
getBasicTextArea().setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
null);
getBasicTextArea().setFocusTraversalKeys(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS,
null);
}
public class DachBasicTextArea extends BasicTextArea{
public DachBasicTextArea() {
super();
// TODO Auto-generated constructor stub
}
}
}
The problem is that the valueChangedEvent is not fireing anymore.
has anybody a suggestion?
Is there a way to disable the page up/down keys for the textarea,
because i want to scroll always the whole pane and not the
textarea.
Has anybody an advice for my previous problem?
http://lists.canoo.com/mailman/private/ulc-developer/2007/005345.html
Is there a property or sth like this to scroll a scrollpane
automatically down when the user goes down the page by tab?
Thx and greetings
marco
_______________________________________________
ULC-developer mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/ulc-developer