wt.query
Class SearchAttributeList
java.lang.Object
wt.query.SearchAttributeList
- All Implemented Interfaces:
- Externalizable, Serializable, SearchAttributeListDelegate
- Direct Known Subclasses:
- PickerSearchAttributeList
Deprecated.
public class SearchAttributeList
- extends Object
- implements SearchAttributeListDelegate, Externalizable
This class is used to set the drop dow list, search criteria, and search
result columns for HTML Local Search. This class has been deprecated
in X05 and all newly developed search UIs should use the Advanced Search
DCA Picker. Please see the customization guide for search for more information.
To use this list set the following property in wt.properties:
wt.query.searchAttributeList=STANDARD
To customize and change the drop down, search criteria, and search result
columns in the local search attributes:
1. Sub-class this class and change the setLocale method to use different
lists. Two constructors will also be required. See below:
public SearchAttributeList( Locale locale ) {
setLocale(locale);
}
public SearchAttributeList() {
return;
}
2. Add an entry into service.properties similar to:
wt.services/svc/default/wt.query.SearchAttributeListDelegate/MINE/java.lang.Object/0=mine.MySearchAttributeList/duplicate
3. Change the entry in the wt.properties to:
wt.query.searchAttributeList=MINE
Supported API: true
Extendable: true
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |