Classes
 ClassDescription
 Conversation Implementation of the conversation component for Seam services.
Integrates with the server-side conversation component of Seam.

It is used to define the current conversation description :
      conversation.description = 'Current task: ';
      someComponent.someConversationalMethod();
      
 ConversationList 
 PagedQuery Implementation of the Tide paged collection backed by a Seam Query component.

The Seam component should have the same name as the Tide client component.
It must have a max-results set either in components.xml or in its constructor,
and its value must be greater than the maximum number of elements displayed.

This component also implements ListCollectionView and can be directly used as a data provider.
for Flex UI components such as DataGrid.
 RemoteList 
 StatusMessages The StatusMessages component gives access to the current list of status messages.
The messages are either received from the server or added locally by the addMessage or addMessageToControl method.

The StatusMessages component is by default bound to the context with the name 'statusMessages'.
  • messages is an ArrayCollection of TideMessage that can be retrieved or bound from tideContext.statusMessages.messages.
  • keyedMessages is an Map of ArrayCollections of TideMessages that can be retrieved or bound from tideContext.statusMessages.keyedMessages.
  • These message lists are bindable properties that can be used as providers for Repeaters or Lists.