Skip to content

Latest commit

 

History

History

searchBar_Paragraphs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

This example shows the usage of the APIconnector, searchBar and paragraphDetection module.
Check out the live demo.
The example detects paragraphs in the page and detects when a paragraph is focused. In addition it adds a search bar to the bottom of the page. When a paragraph is focused, the keywords from this paragraph are extracted and displayed in the search bar as query. This query is executed and the results can be displayed in the searchResultListVis widget included from visualization widgets. The search bar allows the user to interact with the query, e.g. add keywords, (de-)activate keywords, edit the main topic, etc.

The relevant files are index.html and example.js.

index.html

The relevant parts in this file is the inclusion of the example.js script via requirejs and the inclusion of the relevant css-files.

  • inclusion of example.js

    <script data-main="example" src="../lib/require.js"></script>
  • inclusion of css-files

    <link rel="stylesheet" href="../../searchBar/searchBar.css" />
    <link rel="stylesheet" href="../lib/css/jquery-ui.css" />
    <link rel="stylesheet" href="../lib/css/jquery.tagit.css" />

example.js

In principle, this file is where all work is done, it is heavily commented, so have a look at the source code to get the details.