• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Question about html:image tag

 
Ranch Hand
Posts: 191
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I have an image in a form.when I press on Alt+N i want to move the focus to that image.How can I do this using AccessKey.

Pls explain with an example.

Regards
Vineela
[ August 25, 2004: Message edited by: Bear Bibeault ]
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving to the HTML/Javascript forum.
 
Ranch Hand
Posts: 823
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This basic HTML code works:

Basically, to use accesskey the element generally needs to be something you can tab to, like a link or a form element. It's also good practice to give an indication of the access key using the title attribute. Note that how the access key is accessed is browser (or OS?) specific. For example, I believe access is via Alt-N on IE/Windows and via Ctrl-N on the Mac.

I don't know how this translates to Struts though.

Jules
[ August 25, 2004: Message edited by: Julian Kennedy ]
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
to avoid using the link you can use

<input type="image" src="eric.gif" accesskey="n">

Eric
 
Vineela Devi
Ranch Hand
Posts: 191
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Thanks for the replies.But what I exactly mean is iam using <html:image> tag but not the <input type = "image"> tag.

So how can I move the focus to the html element referred by this <html:image> tag when I press any keyboard character

Vineela
 
JulianInactive KennedyInactive
Ranch Hand
Posts: 823
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Struts API docs seem to suggest:

I imagine that's worth a try.

Jules
 
Vineela Devi
Ranch Hand
Posts: 191
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Thanks.And any idea abt html:img tag?

Vineela
 
JulianInactive KennedyInactive
Ranch Hand
Posts: 823
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I suggest you adapt my basic HTML suggestion to Struts. If you have trouble then post your attempt (perhaps in the Struts forum) and I'm sure you'll get further help.

Jules
 
reply
    Bookmark Topic Watch Topic
  • New Topic