English 中文(简体)
setFocus() always false
原标题:

I m working on a Eclipse RCP Application. In a class which extends MultiPageEditorPart, I m trying to set the focus to a text field. But the setFocus Method always returns false.

What am I doing wrong?

The MultiPageEditor has various pages and inside these pages, there are Composite - classes. These classes contain the text field.

Here is the snippet: (errorPage is an int, the Pagenumber on which my validation found the error)

if(!dataValid) {
   MessageDialog.openError(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), "Fehler bei der Dateneingabe", stringBuilder.toString());
   this.setActivePage(errorPage);
   Composite errorComposite = (Composite) this.getControl(errorPage);
   Control[] children = errorComposite.getChildren();
   for (Control child : children) {
    if(child instanceof Form) {
     Form form = (Form) child;
     Composite body = form.getBody();
     Control[] formChildren = body.getChildren();
     for (Control formChild : formChildren) {
      if(formChild.equals(errorControl)) 
                            formChild.setFocus();
      return dataValid;
     } 
    }
   }
  }
最佳回答

The setFocus() may return false on the following situations:

  1. Maybe control is a unfocusable control like Label
  2. Composites attempt to assign focus to their children before taking focus themselves
  3. A control will not take focus if it is disabled or hidden
  4. Input is blocked due to modality.

So I would better check, (1) am I setting focus on the right control, (2) is the control visible, maybe the form containing the control is not in the current selected tab. (3) is any other modal dialog open.

问题回答

Have you tried Control#forceFocus()?





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签