• 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

Online Help system for JSF application

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can any one suggest me the best approach to provide Context Sensitive Online Help for JSF2.0 application.
 
Ranch Hand
Posts: 218
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

I just use ? icons with dialog boxes. I prefer to use jquery ui dialogs rather than anything provided by a component library
http://jqueryui.com/demos/dialog/.

Regards,
Brendan.
 
Sandeep GoudK
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Brendan, thanks for the suggestion,
I have lot of helpset files (HTML files with help content), I must use those help set files for displaying help content. I have tried JavaHelp, but it doesn't work with JSF. Do you have any idea on Oracle Help.
 
Saloon Keeper
Posts: 27807
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The RichFaces extension tag library provides a ToolTip facility for input controls. You can place HTML-formatted text in the tooltip text, and that includes (if I recall correctly) hyperlinks that could pop up a help window.

The single biggest obstacle to using facilities such as JavaHelp on web applications is that the whole web browser paradigm wasn't designed to do stuff like that (it's also a real strain on my carpal tunnels relative to native OS apps). Not a JSF problem, but a general web problem.
 
Sandeep GoudK
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually my application was integrated with WinHelp(.hlp), now I want to move to more flexible help system like JavaHelp or OracleHelp, I want to use the HelpSets from WinHelp system.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic