特定のリンクをクリックすると開くポップアップ ウィンドウのテキスト フィールドにフォーカスを当てようとしました。私の知恵の終わり。助けてください。私のコードは次のとおりです。.javaファイル内:
username.add(new FocusOnLoadBehavior());//username is the textfield and it is in a form.
FocusOnLoadBehavior:
public class FocusOnLoadBehavior extends AbstractBehavior {
private static final long serialVersionUID = 1L;
private Component component;
public void bind(Component component) {
this.component = component;
component.setOutputMarkupId(true);
}
public void renderHead(IHeaderResponse iHeaderResponse) {
super.renderHead(iHeaderResponse);
iHeaderResponse.renderOnLoadJavascript("document.getElementById('"
+ component.getMarkupId() + "').focus();");
}
}