Skip to main content
EmanAssem
Inspiring
September 21, 2016
質問

Is there a way to manage the design of CSH, in terms of pop-up size, adding components, etc. Also, anyone has samples for the CSH output of RH 2015?

  • September 21, 2016
  • 返信数 2.
  • 603 ビュー

I'm planning to have Context-sensitive help for our application and we need to know the design & interaction options for CSH. Can I manage the pop-up size, add components & change structure or it's limited to the form used in RH help itself? Also, I need to know if there samples for CSH behavior &  outputs.

このトピックへの返信は締め切られました。

返信数 2

ahmadsalahudin
Participant
February 13, 2017

Hey Eman,

The default is a javascript popup, you can only control its size (Height and width), whether it is resizable and editable or not, scrolling, etc... But you can not override the basic look of the popup because it is a system object, you can only control its available properties.

If you want to customize the popup, you will need to use jQuery modal box, and use CSS to edit its style in the way you want to.

This topic illustrates different samples of Robohelp CSH and how to open it in a popup or a new tab:

Providing Web Applications with Context Sensitive Help Using RoboHelp WebHelp - CodeProject

To change the properties of the popup, it is done within the code, and if you don't know Javascript, it is better just to tell the developer to do it, if it is your role, this might help as an example:

"window.open('" + Label + "', 'popup_window', 'width=1024,height=768,left=100,top=100,resizable=yes');"

This shows comprehensive examples:

http://www.quirksmode.org/js/popup.html

If you need an alternative turn-key solution that works the same but is very simple and customizable let me know (I can share it with you).

Captiv8r
Legend
September 21, 2016

Hi there

To the best of my knowledge, all the popup and other functionality is controlled by scripting. Of course, your mileage may vary based on different browsers, browser versions and browser behaviors, but by and large there are no real limitations you might see because a topic was opened using a context sensitive call.

Cheers... Rick

EmanAssem
EmanAssem作成者
Inspiring
September 22, 2016

Hello,

Thank you. So, you mean that I can manage the final output design & behavior through CSS?

Captiv8r
Legend
September 22, 2016

Uhhh, the initial thread was talking about CSH (Context Sensitive Help) and now you are asking about CSS (Cascading Stylesheet Specification).

I'm not sure exactly what you are asking because Output Design and Behavior could be influenced via CSS, sure. But CSH is just a way of connecting the help to an application. So I'm a bit confused.

Cheers... Rick