You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Alexander Monakhov <do...@gmail.com> on 2010/05/26 12:31:10 UTC

set focus on IE

Hi, guys.

Here is code I'm using to show modal window in response of AjaxLink onClick
event:

public void onClick( AjaxRequestTarget target ) {
      modal.show( target );
      target.focusComponent( getComponentToBeFocuse() );
}

It's working correctly on FireFox and Opera, but isn't working on IEv7/IEv6.
Could you give me any suggestion?

Best regards, Alexander.