This HyperDoc Online add-in allows to select and add arbitrary documents from different objects in hierarchy to Document List that can be passed to predefined service in form of an XML (POST).

How to use Document List Creator Add-In:

You can either first choose documents from object and activate Addin or first Activate the Addin and then add documents to it's list. If you want to select documents in first place you can only select them from one object, then add them to new Addin list and then you can again add documents from other all the objects in your data base.

One can also remove a document from the list by clicking 'x' icon (located on the right of the table) in the documents table on chosen document.

One can also show document in HyperDoc Online by clicking 'show' icon in the documents table (located on the left of the table) on chosen document.

The highlighted panel below buttons informs whether an action succeeded or not.

This HyperDoc Online add-in allows to select and add arbitrary documents from different objects in hierarchy to Document List that can be passed to predefined service in form of an XML (POST).

  1. To HDocAsp.ini file in section [Configuration] add:

  2. To hisDocListStaticReadOnlyMenu.xml file add a group simmilar to one:

    <menugroup caption="Document List Creator" command="" dynamic="0">
    		<menuitem caption="create list" command="doclist_custom_cmd_n" checkbox="1"/> 
    		<menuitem caption="add to list" command="doclist_custom_cmd_n" checkbox="1"/>
      	</menugroup>

    Where n has to be same as in HDocAsp.ini file

  3. OPTIONAL - Check Your localization for DocList Add-in in '/lang/hislocalization.js' file that is placed under IIS virtual directory 'lang'. You can modify them if needed. Strings that concern DocListCreator are prefixed with 'DLC'.

  4. Set following variables in documentlistaddin object in documentlistaddin.js script:

    URL = "http://sample_url";

    - url where the list is to be sent

    var stylesheetTheme ="blitzer";

    - The jquery ui theme stylesheet for the add in. Options: blitzer, redmond.

ALTERNATIVE

One can also include only one menu item to Document Menu– 'create list' without wrapping it into a group. The Add to list functionality is additionally provided in the add-in's window under the button with english label: 'Add documents', so one may not need to add this button.

If so, add to hisDocListStaticReadOnlyMenu.xml only following item only:

<menuitem caption="create list" command="doclist_custom_cmd_n"/>

With doclist_custom_cmd_n with equivalent content:

javascript:hTop.DLC_openForm();
loading table of contents...