Symantec IGA

 View Only
  • 1.  Initial Focus on IdM Profile Screen

    Posted Oct 24, 2014 11:31 AM

    Does anyone know of any way of specifying the focus to be placed on a particular field at the initial viewing of an IdM Profile screen?

     

    I have been able to change the focus on a screen by creating a button which includes the following JavaScript code:

        

         document.getElementById(focus_field_id).focus();

     

    (The focus_field_id variable contains the ID of the desired field, passed as an argument to the function.)

     

    However, this does not seem to work for an initial viewing of the screen.

     

    Any ideas?



  • 2.  Re: Initial Focus on IdM Profile Screen

    Posted Oct 24, 2014 12:00 PM

    I think you can do this by putting it in the initialization JavaScript for the screen. You'll need to do some playing around to get it working, but that should be right area.

     

    W.



  • 3.  Re: Initial Focus on IdM Profile Screen

    Posted Oct 24, 2014 03:12 PM

    William, thank you for the suggestion.   However, in the Initialization JavaScript you can only use the methods available from the FieldContext or ScreenContect interface.   I do not see any methods that would control focus.