How to add jump to location within same topic?

We are migrating a client-server application to being a SaaS application.  In the process, we need to consolidate all of our 650+ context-sensitive topics into a much smaller number of what we're calling "page topics".  Each page topic will document all of the data entry fields, drop-down menus, checkboxes, and radio buttons available in a single data entry window of the SaaS application.  Since some of these windows contain dozens of data entry fields, etc., their page topics will be long.  We'd like to simplify the user's task of finding a specific data entry item by including a list of links at the top of each page topic that jump to all of the respective data entry items covered in the topic.
While I've created countless jumps between topics, I haven't been able to find a way to create jumps within a topic.  I currently use RH X5 on a Windows XP machine, but I am considering upgrading to RH 8.  Also, while the Help system in question is currently compiled as Microsoft HTML Help (.chm), I plan to move to WebHelp format for our SaaS application.  Is there a way to create intra-topic jumps in RH X5?  How about RH 8?
Many thanks for any suggestions you can make!

Hi Elisa
I'm shocked! Me? Harsh?
Okay, I do admit to being a bit opinionated when it comes to the Word/HTML bit.
A couple of points here.
The Mini-TOC placeholder may be inserted independently inside any topic you like. You aren't limited to using it inside Master Pages.
The behavior you cite isn't a WebHelp behavior. It's a standard behaviour you see with Web Browsers. And there is a workaround. Just position your cursor at the end of the text and press Enter many times to create "White space" at the bottom of the topic. This then allows the page to position to the Bookmark properly.
And before someone chides me and says: You know, Mr. Man, that if the user prints that topic it will make more paper come out of the printer!
I will heartily agree with you. That's the trade off. But why is the user printing the electronic documentation anyway?  After all, it *IS* called WebHelp for a reason.
Cheers all... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
Adobe Certified RoboHelp HTML Training
SorcerStone Blog
RoboHelp eBooks

Similar Messages

  • How to Add  3 queries in the same work book?

    Hi Gurus,
    Can any one tell How to Add  3 queries in the same work book?
    Example, daily report,Monhly and yearly reports for sales should be in the same workbook.
    Please help me if any one have a pointer or a how to doc if available.
    <<Text removed>>
    Thanks
    James
    Edited by: Matt on Apr 26, 2010 9:36 AM

    Hi James,
    According to BI 7.0 Version
    Steps of creating workbook and to insert more than one query in a workbook.
    When you run a query and it opens in Bex Analyzer you can click the save button and pick "Save as Workbook".
    Once you save it as a workbook Click on the "Design Mode" button in the Bex toolbar (looks like an A).
    Click in the sheet where you want the new query to go, click the "Analysis Grid" button. It will add the analysis grid to your new sheet.
    Right click on the Analysis grid and go to properties.
    Click on button to change data provider and select the query you want to attach.
    Exit design mode and you should be all set.

  • How to add a scroll bar within a view window ?I want to display x and y axis outside the scoll window and keep those axis static and move the graph within scroll area

    how to add a scroll bar within a view window ?I want to display x and y axis outside the scoll window and keep those axis static and move the graph within scroll area
    ananya

    Hey Ananya,
    I believe what you want to do is possible, but it will not be
    easy.  If you want to add a scroll bar that will scroll the graph
    back and forth but keep the axis set, you would want to add a
    horizontal or vertical scrollbar.  Then you would create an event
    handler for the scroll event.  You would have to manually plot
    different data within this scroll event.  Unfortunately, there is
    not really a built in way to do this with the Measurement Studio plot
    control.
    Thanks,
    Pat P.
    Software Engineer
    National Instruments

  • Transfer between storage location to storage location within same plant

    Dear Gurus,
    We r doing storage location to storage location transfer within same plant through purchase order.
    Due to excise requirement we have to raise excise invoice for the same for captive consumption purpose.
    Is it possible to make it One step procedure so that GR will take place at same time as GI the way it works for plant to planrt.
    In ECC 6.0 option is there for transfer between storage location. I configured but it is not working.
    Please check the same.
    Rgds,
    Saurabh

    Hi Saurabh,
    The proceedure you are following is a bit wierd. But I think this is as per your business requirements.
    You can continue to follow the same proceedure as this may  not be possible through one step movement type.
    Best Regards,
    Prateksha.

  • How to add af:inputFile dynamically within each row of table?

    I need to add af:inputfile dynamically within each row of af:table, when the user hits a commandlink at the bottom of each row.
    I have tried wrapping af:inputfile with af:foreach:
    <af:table value="Bean.rows" var="row">
    <af:column>
    <af:forEach step="1" begin="1"
    end="#{Bean.filecount}">
    <af:inputFile label="Please upload a file"
    id="1"
    valueChangeListener="#{Bean.onClickUpload}"/>
    </af:forEach>
    <af:commandLink text="Add more file" id="cl3" actionListener="#{Bean.onAddFile}"/>
    </af:column>
    </af:table>
    in Bean.onAddFile, I have:
    public void onAddFile(ActionEvent event){
    filecount++;
    It works but there's no independent control of each row. When I click one commandlink, All rows now have 2,3,.... af:inputFile. The change affects all rows.
    The requirement should be that when I click one commandlink in a row, only that row shows additional af:inputFile.
    So why not leverage the row variable of the table, right? That's what I did, I changed the end attribute of foreach to the following:
    <af:forEach step="1" begin="1"
    end="#{row.fileRowCount}">
    the backing bean method changed to the following:
    public void onAddFile(ActionEvent event){
    int filerowcount = (Integer)JsfUtil.resolveExpression("#{row.fileRowCount}");
    Integer newcount = filerowcount+1;
    JsfUtil.setExpressionValue("#{row.fileRowCount}", newcount.toString());
    Note that "row" refers to an object that has a int field called "filerowcount". And the initial value is "1".
    Just for testing, I also added <af:outputText value="row.filerowcount"/>, to see if the count is what I expected it to be.
    I didn't see the any af:inputfile this time, but the outtext is showing the filerowcount properly. When I click the commandlink, the number changed to 2,3,..... Also in the backing bean newcount and filerowcount is incrementing correctly.
    I know the begin, end attribute means the index of a for loop. So I changed begin="0", it now shows one row of af:inputfile, but when I click the commandlink, no additional rows are shown. (Although the outputtext of filerowcount keeps incrementing as expected.
    So to sum up, the END attribute of af:foreach row CAN pick up the value from the backing bean and render af:inputfile dynamically, but it CANNOT pick up the value from the the field in VAR object of a table.
    Is is a known issue? Or I did something by mistake.
    Is there any other way to add af:inputFile dynamically within each row of table?
    Any advice/comment is appreciated.

    Hi,
    here is how it goes:
    - add an af:inputFile to the column and set its rendered property to point to a managed bean property. The managed bean property has a default value of "false" and the bean should be in viewScope
    - create another variable that holds the row number that should show the inputFile component. This is updated by the command link and evaluated by the get method of the managed bean property controlling the inputFile visibility
    - Define a property name for the table varStatus property
    - For the command link, define a attribute f:attribute with the name rowNumber and set its value to #{varStatusPropertyName.index}
    - define an action listener for the command link
    public void showInputFile(ActionEvent actionEvent){
    int rowNumber = ((RichCommandLink) actionEvent.getSource()).getAttributes().get("varStatusPropertyName");
    //set the value on the internal variable
    - In the getter of the property that defines the render value of the inputFile, use code like this
    public boolean get<whatever name you use>(){
    //access the following EL from Java #{varStatusPropertyName.index}
    int currentRenderedRow = <EL result here>;
    // compare the current row index with the one set by the command link, which is stored in the variable of the managed bean
    if true return true
    else return false
    - Set the PartialTriggers property of the table to point to the commandLink ID so the table is repainted when the command link is pressed
    This should then render the fileInput component for a single row (the one you clicked the command link in)
    Frank

  • How to make jump menus all the same length?

    I have a series of jump menus. Some listings in the jump menu
    are longer than others but I would like the pull down boxes for all
    the jump menus to be the same length. How can I do this?

    By length, do you mean width?
    <select style="width:300px;"></select>
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "Johnny the boy" <[email protected]> wrote
    in message
    news:fulkis$bdj$[email protected]..
    > I have a series of jump menus. Some listings in the jump
    menu are longer
    than others but I would like the pull down boxes for all the
    jump menus to
    be the same length. How can I do this?

  • How to add Software Library Location in OEM 11g to facilitate patching.

    Hi,
    I'd like to use patching deployment to patch a gold copy oracle home, that is not being actively used.
    I'm tryingt to configure the deployment setup and on the screen where it says.
    Information
    You are adding a Software Library location for the first time. Provisioning Archive (PAR) files in the directories $OMS_ORACLE_HOME/sysman/prov/paf and $OMS_ORACLE_HOME/sysman/admin/deploymentprocedures will be uploaded.
    Add a new Software Library by specifying directory location. In case of multiple Oracle Management Service (OMS) setup, specify normal preferred credentials for each host running OMS.
         * Software Library Directory Location      
    when I enter a location , e.g
    /oracleinstall/software/oemsoftwarelib
    whos persmissions are as follows
    drwx------ 2 oracle oinstall 4096 Feb 23 12:25 oemsoftwarelib
    I get just get the following
    Internal Error has occurred. Check the log file for details.
    does anybody know what the problem might be and which log exactly to look in?
    thanks

    Hi,
    You should look at OMS log/trace files in the .../gc_inst/em/EMGC_OMS<n>/sysman/log directory to get clues on the error.
    Check Support Note 1156825.1, which documents a similar symptom.
    Note that in a multi-OMS environment, the software library location must be readable and writable from all OMS hosts.
    Regards,
    - Loc

  • How to add two datasets inside a same tablix?

    Hi Everyone,
    I want to create a report as using project server datas with two datasets in the same tablix.my report has three grouping by Months,Resources, and Resource Role.my dataset has resource name parameter.when i selected a few resource as filter,LookupSet function
    gives me an array.But it is taking first value of array for each resource.Actually it must get related value for resource in the array.

    Hi Visakh,
    i tried to merge them at backend.but it gave me the wrong results.because resource has 168 hours capacity at selected date range.
    For example:
    i selected dates between 01.11.2013 and 30.11.2013.there are 3 project at this date range for this Resource.but it gave me less result for capacity.i think that it is bringing the capacity according to the results in Epm_AssignmentByDay_Userview table matching.but
    it must bring the result according to selected date range.
    My SP:
    USE [ProjectServer_Reporting_Canli]
    GO
    /****** Object:  StoredProcedure [dbo].[CSP_ResourceCapacityControl]    Script Date: 01/26/2014 04:31:31 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[CSP_ResourceCapacityControl]
    @Resources VARCHAR(4000),
    @ResourceRole VARCHAR(4000),
    @DateStart DATETIME,
    @DateEnd DATETIME,
    @Programme VARCHAR(4000)
    AS
    BEGIN
    SELECT
    TimeByDay,
    ResourceUID,
    ResourceName,
    Capacity,
    ProjectUID,
    ProjectName,
    [Project  Type.Proje Türü],
    [Function.Fonksiyon],
    [Proje Durum],
    ProjectStartDate,
    ProjectFinishDate,
    [Role.Rol],
    [Speciality.Uzmanlık],
    Rol_KaynakAnalizi,
    [OutSource Company.Dış Kaynak Firma],
    [Source.Kaynak],
    [programme.program],
    SUM(BaselineAssignmentWork) AS BaselineWork,
    SUM(AssignmentActualWork) AS ActualWork,
    SUM(AssignmentWork) AS AssignmentWork,
    SUM(AssignmenRPlanWork) AS AssginmenRPlanWork
    FROM
    (SELECT
    ABD.TimeByDay,
    RUV.ResourceName,
    PUV.ProjectUID,
    PUV.ProjectName,
    PUV.[Project  Type.Proje Türü],
    PUV.[Function.Fonksiyon],
    PUV.[Proje Durum],
    PUV.ProjectStartDate,
    PUV.ProjectFinishDate,
    RUV.ResourceUID,
    RUV.[Role.Rol],
    RUV.[Speciality.Uzmanlık],
    RUV.Rol_KaynakAnalizi,
    RUV.[OutSource Company.Dış Kaynak Firma],
    RUV.[Source.Kaynak],
    PUV.[programme.program],
    RDB.Capacity,
    SUM(ABD.AssignmentBaseline0Work)AS BaselineAssignmentWork,
    SUM(ABD.AssignmentWork) AS AssignmentWork,
    SUM(ABD.AssignmentActualWork) AS AssignmentActualWork,
    SUM(ABD.AssignmentResourcePlanWork) AS AssignmenRPlanWork
    FROM
    dbo.MSP_EpmAssignmentByDay_UserView AS ABD
    INNER JOIN
    dbo.MSP_EpmAssignment_UserView AS AUV
    ON
    ABD.AssignmentUID = AUV.AssignmentUID
    INNER JOIN
    dbo.MSP_EpmProject_UserView AS PUV
    ON
    PUV.ProjectUID = AUV.ProjectUID
    INNER JOIN
    dbo.MSP_EpmResourceByDay_UserView RDB
    ON
    RDB.ResourceUID=AUV.ResourceUID and RDB.TimeByDay=ABD.TimeByDay
    INNER JOIN
       dbo.MSP_EpmResource_UserView AS RUV
    ON
    RUV.ResourceUID = AUV.ResourceUID
    INNER JOIN
    (SELECT ObjectUID
    FROM dbo.CF_SQLParameterINOperatorInStoreProcedure(@Resources)) As ParamResourceUIDs
    ON
    RUV.ResourceUID = ParamResourceUIDs.ObjectUID
    INNER JOIN
    (SELECT ObjectUID
    FROM dbo.CF_SQLParameterINOperatorInStoreProcedure(@ResourceRole)) As ParamResourceRoleID
    ON
    RUV.Rol_KaynakAnalizi = ParamResourceRoleID.ObjectUID
    INNER JOIN
    (SELECT ObjectUID
    FROM dbo.CF_SQLParameterINOperatorInStoreProcedure(@Programme)) As ParamProgramme
    ON
    PUV.[programme.program]=ParamProgramme.ObjectUID
    WHERE
    (RDB.TimeByDay BETWEEN (@DateStart) and (@DateEnd))
    --AND
    --ABD.AssignmentActualWork <> 0
    GROUP BY
    ABD.TimeByDay,
    PUV.ProjectName,
    PUV.[Project  Type.Proje Türü],
    PUV.[Function.Fonksiyon],
    PUV.[Proje Durum],
    PUV.ProjectStartDate,
    PUV.ProjectFinishDate,
    RUV.ResourceUID,
    PUV.ProjectUID,
    RUV.[Role.Rol],
    RUV.[Speciality.Uzmanlık],
    RUV.Rol_KaynakAnalizi,
    RUV.[OutSource Company.Dış Kaynak Firma],
    RUV.[Source.Kaynak],
    PUV.[programme.program],
    RDB.Capacity,
    RUV.ResourceName) AS Temp
    --INNER JOIN
    -- (SELECT ResourceRoleID
    --    FROM
    -- dbo.CF_SQLParameterINOperatorResourceBolum(@ResourceRole)) As ParamResourceRole
    -- ON
    -- (RUV.Role_KaynakAnalizi = ParamResourceRole.ResourceRoleID)
    GROUP BY
    TimeByDay,
    ResourceName,
    ResourceUID,
    ProjectName,
    [Project  Type.Proje Türü],
    [Function.Fonksiyon],
    [Proje Durum],
    ProjectStartDate,
    ProjectFinishDate,
    ProjectUID,
    [Role.Rol],
    [Speciality.Uzmanlık],
    Rol_KaynakAnalizi,
    [OutSource Company.Dış Kaynak Firma],
    [Source.Kaynak],
    Capacity,
    [programme.program]
    END
    RETURN 0

  • How to add app to location services in lion

    My macbook pro was running under SL then I updated it to Lion, I read about the location services in mac is activated, now I have everything enabled in my system preferences but there is no applications in the list
    I tried to use safari with twitter, I hit the location icon but it shows unknown location and still safari was not listed in the system preferences
    any idea guys!!!

    Check out Safari > Preferences - Privacy
    You'll see settings for location services there.

  • How to Add Detail Tabular Form within Master Tabular Form?

    Hi,
    Here is my requirement
    I have a tabular form lets say DEPT. I want to add plus [+] button in first column.
    If user click on plus button I want expand detail region and want to display All employees of that department in detail region.
    User should be able to add/update/delete employees in detail region for respective department.
    Has any one done this before.
    I have seen this on number web sites but did not find feature/template to do this in Oracle APEX.
    If any one has template of such form then please let me know.
    Thanks in advance for your help.
    Thanks,
    Devidas Dumbre

    Does any one has any solution for this?

  • How to turn off/on triggering within same IMAQ session

    I put together an image acquisition application with a NI 1427 frame grabber and a Basler Aviator camera. I want to be able to switch between continuous (non-triggered) acquisition and triggered (acquisition is not running during the switch).
    I can switch from continuous to triggered without reconfiguring the IMAQ session by using the IMAQ Configure Trigger3 VI. However, to go back to non-triggered mode, I tried calling the Configure Trigger3 VI with "Disabled" as the Action but that gave me a "Requested triggering mode is invalid error". I also tried using "Software Trigger" as the Type and that gave me the same error. Is there no way to turn off triggering without reconfiguring the entire IMAQ session?
    Thank you for any input.
    Vadim

    Hi Kira,
    Thank you for the response. I tried what you suggested but received an error stating that this was not a valid attribute. So I looked in MAX and saw that I have 2 Camera attributes (I think based on my icd file) and they are Bit Depth and Triggering. The Triggering attribute does have a "Free Run" value which I tried using with the IMAQ Set Attribute VI (with Camera Attribute = Triggering). I had no error but the frame grabber was also not acquiring images, i.e., the IMAQ session was originally in triggered mode and it seems that it was still waiting for an external trigger. 
    Vadim

  • How to add multiple ios users on same computer

    I currently use windows to sync apps and music on my Iphone. My Wife also shifted to Iphone recently and now if she connects to my laptop, Itunes starts syncing my apps onto her Iphone as well. Is Itunes not smart enough to maintain separate profile based on separate apple id?

    I just found my answer in another discussion. See below.
    https://discussions.apple.com/message/3227871#3227871

  • How to add left and right margins in Topic?

    Hi
    I am using RH10, as part of TCS4. I am creating screen layouts by just modifying the existing ones.
    I noticed that there is no margin/ space between the topic border and the topic content in it. When I searched for that in mobile.css, I did not find any relevant reference. When I did a Inspect Element on Firefox, it pointed to default.css which I don't find in my Project Setup pod.
    How can I modify it? Here is the screenshot of the issue I am referring to:
    Please advise.
    Sreekanth

    Or right click the css, click Edit With > HTML Editor and apply a margin left and margin right to the Body tag.  That will affect all the styles in one go.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Release Strategy for inter Storage Loc Material transfer within same Plant

    Hi Guru's
    I hope all are doing good. I gota small concern to share with you. Is it possible to apply Release Strategy between two Storage Locations within same Plant for Material Movement?
    Many Thanks
    SONAL

    Release Strategy cannot be assigned in material document.
    However you can restrict this at authorisation level for T code MIGO_TR.
    Regards
    Bhavesh Mistry

  • How do I add a contact from the same company to my address book?

    How do I add a contact from the same company to my address book? I do not want to re-type all of the information. Thanks for your help.

    Any card in your address book can be duplicated. Select the card within the Name column, and use the Edit > Copy menu item followed by the Edit > Paste menu item. Then you can update the card copy and only change the name/email/phone fields as needed.

Maybe you are looking for