Packagecom.endeca.tools.pagebuilder.model.content
Interfacepublic interface INavigationRecords extends IContentModelObject, flash.events.IEventDispatcher, IEquatable, flash.utils.IExternalizable

Contains information for retrieving records using a navigation query.

This configuration information contains sorting strategies, relevance ranking strategies, and pagination information.

See also

INavigationRecordsProperty


Public Properties
 PropertyDefined by
 InheritedreadOnly : Boolean
Indicates whether the content model is in read-only mode.
IContentModelObject
  recordsPerPage : uint
The number of records that should be displayed on one page.
INavigationRecords
  relevanceRanking : String
The name of the relevance ranking strategy to use.
INavigationRecords
  sorts : IContentModelList
An ordered list of sorting strategies.
INavigationRecords
Public Methods
 MethodDefined by
 Inherited
equals(obj:Object):Boolean
Tests whether this object is equal to the given object.
IEquatable
Events
 EventSummaryDefined by
 Inherited Dispatched when the content model has been updated in some way.IContentModelObject
Property detail
recordsPerPageproperty
recordsPerPage:uint  [read-write]

The number of records that should be displayed on one page.

This property can be used as the source for data binding.

Implementation
    public function get recordsPerPage():uint
    public function set recordsPerPage(value:uint):void
relevanceRankingproperty 
relevanceRanking:String  [read-write]

The name of the relevance ranking strategy to use.

This property can be used as the source for data binding.

Implementation
    public function get relevanceRanking():String
    public function set relevanceRanking(value:String):void
sortsproperty 
sorts:IContentModelList  [read-write]

An ordered list of sorting strategies. It may only contain items of type IRecordSort.

This property can be used as the source for data binding.

Implementation
    public function get sorts():IContentModelList
    public function set sorts(value:IContentModelList):void

See also