MDDB Report Viewer Methods |
When a user selects the Bookmark button, the addtofav function saves the URL in the browser's bookmark list.
CALL SEND(OBJID,'_OUTPUT_ADDTOFAV_FUNCTION_');
The following output is produced:
function addtofav(varName){ LinkName=window.document.title; with (window.parent.table_window) { linkUrl=eval(varName); } window.external.AddFavorite(linkUrl,LinkName); }
MDDB Report Viewer Methods |