...
Open the
client_main.xml
file for editing. Ensure the Quick Search text box is visible somewhere in the Weave application by searching for "indexcombo
". If it's not there, add the following XML to your file:Code Block <item component="weave.indexcombo" minScale="2500" all="true"/>
- An Index is linked to an Entity so the Entity should exist in the
entity.xml
file. If it doesn't exist, add it to this filetheentity.xml
file.
- The details of the Quick Search itself need to be added to the
index.xml
file. This specifies what results you want returned. The process of setting up an Index (and thus a Quick Search) is well documented in the Weave Configuration Reference (Indexing). Please refer to it as there are many parameters that can be set on your Index, and to achieve the desired result it is necessary to understand the way the Index is created and the parameters that can be defined. - Though an Index is defined in the
index.xml
file the Index itself is not automatically created, it and is created manually or at a set time. Once you’ve defined an Index, it can be created manually using the Weave Administration Tool Console or Weave's OSGi console.
- Open the console window .
Type and type the commandis
to return a list of all indexes.
- Note the Index number that is of interest (the number under the
Index
heading). Then use the commandib <space separated list of index ids>
to rebuild the index of interest. The index will be built in the background so check the Weave log file for the results of the index buildingbuild.
Info |
---|
Also refer to the following sections of the Weave System Administrator Guides: |
...