Atlas/Ajax setfocus

  • Thread starter Thread starter pmclinn
  • Start date Start date
P

pmclinn

I have everything working great in my .net ajax environment except that
during async postbacks I'm lossing focus of the control making the
call. How do I prevent this from happening. I have tried creating
session variable and storing the location of the .focus but this only
works when I allow for postbacks.

Control A fires an event >>>> After completion I want to set the focus
on >>>Control B (textbox).

What happens right now is both textboxes lose focus.
 
you don't say which controls your are using, but just register a completion
handler, and set the focus after the async call completes.

-- bruce (sqlwork.com)
 
Back
Top