windowHDGotoInterviewBookmark Method |
This function navigates the user to a specific dialog in the interview, and moves the focus to a designated field within that dialog.
If the bookmark is invalid, or the location is no longer part of the interview, no navigation takes place.
JavaScript API: Direct
Assembly: api.js Version: 1.0.0.0 (1.0.0.0)
Syntax
JavaScript
function HDGotoInterviewBookmark(str);
Parameters
- str
- Type: string
An interview bookmark string, as generated by HDAPI.GetInterviewBookmark.
Remarks
This function was introduced in HotDocs Server 10.
Examples
JavaScript
var HDInterviewOptions = { OnInit= function () { HDAPI.RegisterHandler("OnHDStart", function (eventArgs) { HDAPI.GotoInterviewBookmark('Job Information|1'); } ); } };
See Also