|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.smartgwt.client.core.BaseClass
com.smartgwt.client.data.RecordList
com.smartgwt.client.data.ResultSet
public class ResultSet
ResultSets are a subclass implementation of RecordList
that automatically fetches
DataSource records when items are requested from the List. ResultSets provide robust,
customizable,
high-performance cache management for ListGrids and other built-in SmartGWT
components, and can be used as cache
managers by custom components.
ResultSets manage data paging, that is, loading records in batches as the user navigates the data set. A ResultSet will switch to using client-side sorting and filtering when possible to improve responsiveness and reduce server load. ResultSets also participate in automatic cache synchronization, observing operations on DataSources and automatically updating their caches.
Creation
A ResultSet can be passed to any component that expects a List, and the List APIs can be
called directly
on the ResultSet as long as the caller is able to deal with asynchronous
loading; see getRange(int, int)
.
Generally ResultSets do not need to be created directly, but
are created by DataBound
components as an automatic consequence of calling
'DataBound Component Methods'
.
For example, the ListGrid.fetchData()
causes data
to become an
automatically created ResultSet
object. Automatically created ResultSets
can
be customized via properties on ListGrids such as dataPageSize
and
dataProperties
. All
ResultSets for a given DataSource may also be
customized via setting resultSetClass
to the name of a ResultSet
com.smartgwt.client.util.isc#defineClass
in which
com.smartgwt.client..Class#addProperties
.
A ResultSet defaults to using data paging, setting startRow
and
endRow
in issued dsRequests. Server code may always
return more rows than
the ResultSet requests and the ResultSet will correctly integrate those rows based on
startRow
/'endRow'
.
Hence the server can always avoid paging mode by simply returning all matching rows.
A
ResultSet can be created directly with just the ID of a DataSource
:
isc.ResultSet.create({ dataSource : "dataSourceID" })
Directly created ResultSets are typically used by custom components, or as a means of managing datasets that will be used by several components.
When created directly rather than via a dataBoundComponent, a newly created ResultSet
will
not issue it's first "fetch" DSRequest
until data is accessed (for example,
via
get(int)
).
Paging and total dataset length
When using data paging, the server communicates the total number of records that match the
current search
criteria by setting totalRows
. The ResultSet will then
return this number from getLength()
, and ListGrids and other
components
will show a scrollbar that allows the user to jump to the end of the dataset
directly.
However, the
ResultSet does not require that the server calculate the true length of the
dataset, which can be costly for an
extremely large, searchable dataset. Instead, the
server may simply advertise a totalRows
value that is one page larger
than the last row loaded. This results in a UI sometimes called "progressive
loading",
where the user may load more rows by scrolling past the end of the currently loaded rows,
but is not
allowed to skip to the end of the dataset.
No client-side settings are required to enable this mode - it
is entirely server-driven.
However, it is usually coupled with 'disabling sorting'
, since
server-side sorting would also
force the server to traverse the entire dataset.
Client-side Sorting and Filtering
If a ResultSet obtains a full cache for the current set of filter criteria, it will automatically switch to client-side sorting, and will also use client-side filtering if the filter criteria are later changed but appear to be more restrictive than the criteria in use when the ResultSet obtained a full cache.
The
'useClientSorting'
and
'useClientFiltering'
flags can be used to disable
client-side sorting and filtering respectively if these behaviors don't match server-based
sorting and filtering.
However, because client-side sorting and filtering radically improve
responsiveness and reduce server load, it is
better to customize the ResultSet so that it
can match server-side sorting and filtering behaviors.
Sorting behavior is primarily customized via the "sort normalizer" passed to
RecordList.sortByProperty(java.lang.String, boolean)
, either via direct calls on a standalone ResultSet, or via
com.smartgwt.client.widgets.grid.ListGridField#sortNormalizer
for a ListGrid-managed ResultSet.
By
default, client-side filtering interprets the Criteria
passed to
setCriteria(com.smartgwt.client.data.Criteria)
as a set of field values that records must match
(similarly to the
built-in SQL/Hibernate connectors built into the SmartGWT Server).
Custom client-side filtering logic can be
implemented by overriding
ResultSet#applyFilter
. Overriding
compareCriteria(com.smartgwt.client.data.Criteria, com.smartgwt.client.data.Criteria)
allows you to control when the ResultSet
uses client-side vs
server-side filtering, and the ResultSet has two default
'criteria policies'
built-in.
Updates and Automatic Cache Synchronization
ResultSets observe any successful "update", "add" or "remove" dsRequests against their DataSource, regardless of the component that initiated them. A ResultSet with a full cache for the current filter criteria will integrate updates into the cache automatically.
Updated
rows that no longer match the current filter criteria will be removed
automatically. To prevent this, you can set
neverDropUpdatedRows
.
Added rows will similarly
be added to the cache only if they match current filter criteria.
Note that the client-side filtering
described above is also used to determine whether
updated or added rows should be in the cache. If any aspect of
automated cache update is
ever incorrect, 'dropCacheOnUpdate'
can be set for the
ResultSet or invalidateCache
can be set for an individual dsResponse.
Data Paging with partial cache
When in paging mode with a partial cache, a ResultSet relies on server side sorting, setting
sortBy
to the current sort field and direction. In order for the cache to
remain coherant, row numbering must continue to agree between server and client as new
fetches are issued,
otherwise, duplicate rows or missing rows may occur.
If concurrent modifications by other users are
allowed, generally the server should set
invalidateCache
to clear the cache when concurrent modification is
detected.
In paging mode with a partial cache, any successful "update" or "add" operation may cause client and server row numbering to become out of sync. This happens because the update may affect the sort order, and client and server cannot be guaranteed to match for sets of records that have equivalent values for the sort field.
For this reason, after an
"add" or "update" operation with a partial cache, the ResultSet
will automatically mark cache for invalidation the
next time a fetch operation is performed.
Alternatively, if updatePartialCache
is set to false, the ResultSet will
simply invalidate cache immediately in this circumstance.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.smartgwt.client.data.RecordList |
---|
RecordList.SortNormalizer |
Field Summary |
---|
Fields inherited from class com.smartgwt.client.data.RecordList |
---|
jsObj |
Fields inherited from class com.smartgwt.client.core.BaseClass |
---|
config, id, scClassName |
Constructor Summary | |
---|---|
ResultSet()
|
|
ResultSet(DataSource dataSource)
|
|
ResultSet(JavaScriptObject jsObj)
|
Method Summary | |
---|---|
HandlerRegistration |
addDataArrivedHandler(DataArrivedHandler handler)
Add a dataArrived handler. |
boolean |
allMatchingRowsCached()
Do we have a complete client-side cache of records for the current filter criteria? |
boolean |
allRowsCached()
Do we have a complete client-side cache of all records for this DataSource? |
int |
compareCriteria(Criteria newCriteria,
Criteria oldCriteria)
Default behavior is to call DataSource#compareCriteria to determine whether new
criteria is guaranteed more restrictive, equivalent to the old criteria, or not guaranteed more restrictive, returning
1, 0 or -1 respectively. |
int |
compareCriteria(Criteria newCriteria,
Criteria oldCriteria,
DSRequest requestProperties,
String policy)
Default behavior is to call DataSource#compareCriteria to determine whether new
criteria is guaranteed more restrictive, equivalent to the old criteria, or not guaranteed more restrictive, returning
1, 0 or -1 respectively. |
JavaScriptObject |
create()
|
void |
dataArrived(int startRow,
int endRow)
Notification fired when data has arrived from the server and has been successfully integrated into the cache. |
void |
filterLocalData()
Derive the current filtered set of data from the cache of all matching rows. |
Record |
find(Map properties)
Checks only loaded rows and will not trigger a fetch. |
Record |
find(String propertyName,
boolean value)
Like RecordList.find(java.lang.String, java.lang.String) . |
Record |
find(String propertyName,
Date value)
Like RecordList.find(java.lang.String, java.lang.String) . |
Record |
find(String propertyName,
float value)
Like RecordList.find(java.lang.String, java.lang.String) . |
Record |
find(String propertyName,
int value)
Like RecordList.find(java.lang.String, java.lang.String) . |
Record |
find(String propertyName,
String value)
Like RecordList.find(java.lang.String, java.lang.String) . |
Record[] |
findAll(Map properties)
Checks only loaded rows and will not trigger a fetch. |
Record[] |
findAll(String propertyName,
boolean value)
Checks only loaded rows and will not trigger a fetch. |
Record[] |
findAll(String propertyName,
Date value)
Find all objects where property == value in the object. |
Record[] |
findAll(String propertyName,
float value)
Checks only loaded rows and will not trigger a fetch. |
Record[] |
findAll(String propertyName,
int value)
Checks only loaded rows and will not trigger a fetch. |
Record[] |
findAll(String propertyName,
String value)
Checks only loaded rows and will not trigger a fetch. |
Record |
findByKey(String keyValue)
Attempt to find the record in the resultSet that has a primary key value that matches the passed in parameter value. |
int |
findIndex(Map properties)
Like RecordList.findIndex(java.util.Map) . |
int |
findIndex(String propertyName,
boolean value)
Like RecordList.findIndex(java.util.Map) . |
int |
findIndex(String propertyName,
Date value)
Like RecordList.findIndex(java.util.Map) . |
int |
findIndex(String propertyName,
float value)
Like RecordList.findIndex(java.util.Map) . |
int |
findIndex(String propertyName,
int value)
Like RecordList.findIndex(java.util.Map) . |
int |
findIndex(String propertyName,
String value)
Like RecordList.findIndex(java.util.Map) . |
int |
findNextIndex(int startIndex,
Map properties)
Like RecordList.findNextIndex(int, java.lang.String) . |
int |
findNextIndex(int startIndex,
String propertyName)
Like RecordList.findNextIndex(int, java.lang.String) . |
int |
findNextIndex(int startIndex,
String propertyName,
boolean value,
int endIndex)
Like RecordList.findNextIndex(int, java.lang.String) . |
int |
findNextIndex(int startIndex,
String propertyName,
Date value,
int endIndex)
Like RecordList.findNextIndex(int, java.lang.String) . |
int |
findNextIndex(int startIndex,
String propertyName,
float value,
int endIndex)
Like RecordList.findNextIndex(int, java.lang.String) . |
int |
findNextIndex(int startIndex,
String propertyName,
int value,
int endIndex)
Like RecordList.findNextIndex(int, java.lang.String) . |
int |
findNextIndex(int startIndex,
String propertyName,
String value,
int endIndex)
Like RecordList.findNextIndex(int, java.lang.String) . |
Record |
get(int pos)
Returns the record at the specified position. |
Boolean |
getAttributeAsBoolean(String property)
|
Date |
getAttributeAsDate(String property)
|
Double |
getAttributeAsDouble(String property)
|
Element |
getAttributeAsElement(String property)
|
Float |
getAttributeAsFloat(String property)
|
Integer |
getAttributeAsInt(String property)
|
JavaScriptObject |
getAttributeAsJavaScriptObject(String property)
|
String |
getAttributeAsString(String property)
|
Criteria |
getCriteria()
Filter criteria used whenever records are retrieved. |
CriteriaPolicy |
getCriteriaPolicy()
Decides under what conditions the cache should be dropped when the Criteria changes. |
DataSource |
getDataSource()
What DataSource is this resultSet associated with? |
Boolean |
getDisableCacheSync()
By default when the data of this ResultSet's dataSource is modified, the ResultSet will be updated to display these changes. |
Boolean |
getDropCacheOnUpdate()
Whether to discard all cached rows when a modification operation (add, update, remove) occurs on the ResultSet's DataSource. |
int |
getFetchDelay()
Delay in milliseconds before fetching rows. |
FetchMode |
getFetchMode()
Mode of fetching records from the server. |
String |
getFetchOperation()
Operation this dataModel should use to fetch sets of objects |
int |
getLength()
Return the total number of records that match the current filter criteria. |
Boolean |
getNeverDropUpdatedRows()
By default when a a row is returned by the server, the current setCriteria(com.smartgwt.client.data.Criteria)
are applied to it, and it may disappear from the cache. |
static ResultSet |
getOrCreateRef(JavaScriptObject jsObj)
|
Record[] |
getRange(int start,
int end)
Return the items between position start and end, non-inclusive at the end, possibly containing markers for records that haven't loaded yet. |
int |
getResultSize()
How many rows to retrieve at once. |
Boolean |
getUpdateCacheFromRequest()
When a successful Add, Update or Remove type operation fires on this ResultSet's dataSource, if data is unset, should we integrate the submitted data values (from the
request) into our data-set? This attribute will be passed to DataSource#getUpdatedData
as the useDataFromRequest parameter. |
Boolean |
getUpdatePartialCache()
If set to true, updated and added rows will be integrated into the client-side cache even if paging is enabled and cache is partial. |
Boolean |
getUseClientFiltering()
Whether to filter data locally when all DataSource records have been loaded (that is, criteria is blank and cache is complete). |
Boolean |
getUseClientSorting()
Whether to sort data locally when all records matching the current criteria have been cached. |
Map |
getValueMap(String idField,
String displayField)
Get a map of the form { item[idField] -> item[displayField] } , for all items in the list. |
int |
indexOf(Record record)
Return the position in the list of the first instance of the specified object. |
int |
indexOf(Record record,
int pos,
int endPos)
Return the position in the list of the first instance of the specified object. |
void |
invalidateCache()
Manually invalidate this ResultSet's cache. |
static boolean |
isResultSet(JavaScriptObject data)
|
Boolean |
lengthIsKnown()
Whether the ResultSet actually knows how many records are available from the server. |
Boolean |
rangeIsLoaded(int startRow,
int endRow)
Whether the given range of rows has been loaded. |
Boolean |
rowIsLoaded(int rowNum)
Whether the given row has been loaded. |
void |
setAllRows(Record[] allRows)
If the complete set of records for a resultSet is available when the resultSet is created, it can be made available to the resultSet via this property at initialization time. |
void |
setCriteria(Criteria criteria)
Filter criteria used whenever records are retrieved. |
void |
setCriteriaPolicy(CriteriaPolicy criteriaPolicy)
Decides under what conditions the cache should be dropped when the Criteria changes. |
void |
setDataSource(DataSource dataSource)
What DataSource is this resultSet associated with? |
void |
setDisableCacheSync(Boolean disableCacheSync)
By default when the data of this ResultSet's dataSource is modified, the ResultSet will be updated to display these changes. |
void |
setDropCacheOnUpdate(Boolean dropCacheOnUpdate)
Whether to discard all cached rows when a modification operation (add, update, remove) occurs on the ResultSet's DataSource. |
void |
setFetchDelay(int fetchDelay)
Delay in milliseconds before fetching rows. |
void |
setFetchMode(FetchMode fetchMode)
Mode of fetching records from the server. |
void |
setFetchOperation(String fetchOperation)
Operation this dataModel should use to fetch sets of objects |
void |
setInitialData(Record[] initialData)
Initial set of data for the ResultSet. |
void |
setInitialLength(Integer initialLength)
Initial value of the data set length. |
void |
setInitialSort(SortSpecifier... sortSpecifiers)
Initial multi property sort specification for this ResultSet's data. |
void |
setNeverDropUpdatedRows(Boolean neverDropUpdatedRows)
By default when a a row is returned by the server, the current setCriteria(com.smartgwt.client.data.Criteria)
are applied to it, and it may disappear from the cache. |
void |
setProperty(String property,
boolean value)
|
void |
setProperty(String property,
double value)
|
void |
setProperty(String property,
JavaScriptObject value)
|
void |
setProperty(String property,
String value)
|
void |
setResultSize(int resultSize)
How many rows to retrieve at once. |
void |
setUpdateCacheFromRequest(Boolean updateCacheFromRequest)
When a successful Add, Update or Remove type operation fires on this ResultSet's dataSource, if data is unset, should we integrate the submitted data values (from the
request) into our data-set? This attribute will be passed to DataSource#getUpdatedData
as the useDataFromRequest parameter. |
void |
setUpdatePartialCache(Boolean updatePartialCache)
If set to true, updated and added rows will be integrated into the client-side cache even if paging is enabled and cache is partial. |
void |
setUseClientFiltering(Boolean useClientFiltering)
Whether to filter data locally when all DataSource records have been loaded (that is, criteria is blank and cache is complete). |
void |
setUseClientSorting(Boolean useClientSorting)
Whether to sort data locally when all records matching the current criteria have been cached. |
Boolean |
willFetchData(Criteria newCriteria)
Will changing the criteria for this resultSet require fetching new data from the server, or can the new criteria be satisfied from data already cached on the client? Second textMatchStyle parameter determines whether a
change of text-match style will require a server fetch - for example if filter is being changed between an exact match
(from e.g: ListGrid.fetchData() ) and a substring match (from e.g: ListGrid.filterData() ).This method can be used to determine whether ListGrid.fetchData() or ListGrid.filterData()
would cause a server side fetch when passed a certain set of criteria. |
Boolean |
willFetchData(Criteria newCriteria,
String textMatchStyle)
Will changing the criteria for this resultSet require fetching new data from the server, or can the new criteria be satisfied from data already cached on the client? Second textMatchStyle parameter determines whether a
change of text-match style will require a server fetch - for example if filter is being changed between an exact match
(from e.g: ListGrid.fetchData() ) and a substring match (from e.g: ListGrid.filterData() ).This method can be used to determine whether ListGrid.fetchData() or ListGrid.filterData()
would cause a server side fetch when passed a certain set of criteria. |
Methods inherited from class com.smartgwt.client.data.RecordList |
---|
add, addAt, addDataChangedHandler, addList, addList, addListAt, contains, contains, containsAll, duplicate, equals, first, getItems, getJsObj, getProperty, intersect, isCreated, isEmpty, last, lastIndexOf, lastIndexOf, remove, removeAt, removeList, set, setLength, setSort, sort, sort, sortByProperty, sortByProperty, toArray |
Methods inherited from class com.smartgwt.client.core.BaseClass |
---|
destroy, doAddHandler, error, error, errorIfNotCreated, fireEvent, getAttribute, getAttributeAsMap, getConfig, getHandlerCount, getID, getOrCreateJsObj, getRef, getScClassName, onInit, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setID, setScClassName |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.google.gwt.event.shared.HasHandlers |
---|
fireEvent |
Constructor Detail |
---|
public ResultSet()
public ResultSet(DataSource dataSource)
public ResultSet(JavaScriptObject jsObj)
Method Detail |
---|
public static ResultSet getOrCreateRef(JavaScriptObject jsObj)
public JavaScriptObject create()
create
in class RecordList
public void setFetchMode(FetchMode fetchMode) throws IllegalStateException
"local"
if allRows
is specified, otherwise "paged"
.
Note : This is an advanced setting
fetchMode
- fetchMode Default value is null
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic FetchMode getFetchMode()
"local"
if allRows
is specified, otherwise "paged"
.
public void setInitialData(Record[] initialData) throws IllegalStateException
This data will be treated exactly as though it were the data returned from the ResultSet's first server fetch.
By default, initialData
will be considered a complete response (all
rows that match the Criteria
which the ResultSet was initialized with).
Set initialLength
to treat initialData
as a partial
response, equivalent to receiving a DSResponse
with startRow:0
,
endRow:initialData.length
and totalRows:initialLength
. Normal data paging will then occur if
data is requested for row indices not filled via initialData
.
Note : This is an advanced setting
initialData
- initialData Default value is null
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic void setInitialLength(Integer initialLength) throws IllegalStateException
To create a ResultSet with it's cache partly filled, see initialData
.
Note : This is an advanced setting
initialLength
- initialLength Default value is null
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic void setInitialSort(SortSpecifier... sortSpecifiers)
setInitialData(Record[])
, this method may be used
to notify the ResultSet that the data is already sorted such that a call to RecordList.setSort(SortSpecifier...)
will
not require a new fetch unless additional data beyond the ends of the specified initialData are required.
sortSpecifiers
- Initial sort specificationpublic void setAllRows(Record[] allRows) throws IllegalStateException
invalidateCache()
.
Note : This is an advanced setting
allRows
- allRows Default value is null
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic void setResultSize(int resultSize)
Applicable only with fetchMode: "paged"
. When a paged ResultSet is
asked for rows that have not yet been loaded, it will fetch adjacent rows that are likely to be required soon, in
batches of this size.
Note : This is an advanced setting
resultSize
- resultSize Default value is 75public int getResultSize()
Applicable only with fetchMode: "paged"
. When a paged ResultSet is
asked for rows that have not yet been loaded, it will fetch adjacent rows that are likely to be required soon, in
batches of this size.
public void setFetchDelay(int fetchDelay)
When a get() or getRange() call asked for rows that haven't been loaded, the ResultSet will wait before actually triggering the request. If, during the delay, more get() or getRange() calls are made for missing rows, the final fetch to the server will reflect the most recently requested rows.
The intent of this delay is to avoid triggering many unnecessary fetches during drag-scrolling and similar user interactions.
Note : This is an advanced setting
fetchDelay
- fetchDelay Default value is 0public int getFetchDelay()
When a get() or getRange() call asked for rows that haven't been loaded, the ResultSet will wait before actually triggering the request. If, during the delay, more get() or getRange() calls are made for missing rows, the final fetch to the server will reflect the most recently requested rows.
The intent of this delay is to avoid triggering many unnecessary fetches during drag-scrolling and similar user interactions.
public void setDataSource(DataSource dataSource) throws IllegalStateException
DataSource
is this resultSet associated with?
dataSource
- dataSource Default value is null
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic DataSource getDataSource()
DataSource
is this resultSet associated with?
public void setFetchOperation(String fetchOperation)
fetchOperation
- fetchOperation Default value is null
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic String getFetchOperation()
public void setCriteria(Criteria criteria)
Use setCriteria(com.smartgwt.client.data.Criteria)
to
change the criteria after initialization.
Set the filter criteria to use when fetching rows.
Setting new criteria will invalidate the current cache, if any.
Note: any field values in the criteria explicitly specified as null will be passed to the server. By default the server then returns only records whose value is null for that field. This differs from certain higher level methods such as ListGrid.fetchData()
which prune null criteria fields before performing a fetch operation.
criteria
- the filter criteria. Default value is nullpublic Criteria getCriteria()
Use setCriteria(com.smartgwt.client.data.Criteria)
to
change the criteria after initialization.
public void setCriteriaPolicy(CriteriaPolicy criteriaPolicy)
Criteria
changes.
Note : This is an advanced setting
criteriaPolicy
- criteriaPolicy Default value is nullpublic CriteriaPolicy getCriteriaPolicy()
Criteria
changes.
public void setUseClientSorting(Boolean useClientSorting)
This may need to be disabled if client-side sort order differs from server-side sort order in a way that affects functionality or is surprising.
Note : This is an advanced setting
useClientSorting
- useClientSorting Default value is truepublic Boolean getUseClientSorting()
This may need to be disabled if client-side sort order differs from server-side sort order in a way that affects functionality or is surprising.
public void setUseClientFiltering(Boolean useClientFiltering)
This may need to be disabled if client-side filtering differs from server-side filtering in a way that affects functionality or is surprising.
This setting is distinct from fetchMode:"local"
, which
explicitly loads all available DataSource records up front.
See ResultSet#applyFilter
for default filtering behavior.
NOTE: even with
useClientFiltering false, client-side filtering will be used during cache sync to determine if an updated or added row
matches the current criteria. To avoid relying on client-side filtering in this case, either:
- avoid returning
update data when the updated row doesn't match the current filter
- set dropCacheOnUpdate
Note : This is an advanced setting
useClientFiltering
- useClientFiltering Default value is truepublic Boolean getUseClientFiltering()
This may need to be disabled if client-side filtering differs from server-side filtering in a way that affects functionality or is surprising.
This setting is distinct from fetchMode:"local"
, which
explicitly loads all available DataSource records up front.
See ResultSet#applyFilter
for default filtering behavior.
NOTE: even with
useClientFiltering false, client-side filtering will be used during cache sync to determine if an updated or added row
matches the current criteria. To avoid relying on client-side filtering in this case, either:
- avoid returning
update data when the updated row doesn't match the current filter
- set dropCacheOnUpdate
public void setUpdateCacheFromRequest(Boolean updateCacheFromRequest) throws IllegalStateException
data
is unset, should we integrate the submitted data values (from the
request) into our data-set? This attribute will be passed to DataSource#getUpdatedData
as the useDataFromRequest
parameter.
Note : This is an advanced setting
updateCacheFromRequest
- updateCacheFromRequest Default value is true
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic Boolean getUpdateCacheFromRequest()
data
is unset, should we integrate the submitted data values (from the
request) into our data-set? This attribute will be passed to DataSource#getUpdatedData
as the useDataFromRequest
parameter.
public void setDropCacheOnUpdate(Boolean dropCacheOnUpdate) throws IllegalStateException
A ResultSet that has a complete cache for the current filter criteria can potentially incorporate a
newly created or updated row based on the data that the server returns when a modification operation completes. However
this is not always possible for ResultSets that show some types of joins, or when the server cannot easily return update
data. In this case set dropCacheOnUpdate
to cause the cache to be discarded when an update occurs.
dropCacheOnUpdate
can be set either directly on a ResultSet, or on a DataSource in order to affect all
ResultSets on that DataSource.
Note : This is an advanced setting
dropCacheOnUpdate
- dropCacheOnUpdate Default value is false
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic Boolean getDropCacheOnUpdate()
A ResultSet that has a complete cache for the current filter criteria can potentially incorporate a
newly created or updated row based on the data that the server returns when a modification operation completes. However
this is not always possible for ResultSets that show some types of joins, or when the server cannot easily return update
data. In this case set dropCacheOnUpdate
to cause the cache to be discarded when an update occurs.
dropCacheOnUpdate
can be set either directly on a ResultSet, or on a DataSource in order to affect all
ResultSets on that DataSource.
public void setDisableCacheSync(Boolean disableCacheSync) throws IllegalStateException
Note : This is an advanced setting
disableCacheSync
- disableCacheSync Default value is false
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic Boolean getDisableCacheSync()
public void setNeverDropUpdatedRows(Boolean neverDropUpdatedRows) throws IllegalStateException
setCriteria(com.smartgwt.client.data.Criteria)
are applied to it, and it may disappear from the cache. Set this flag to true to disable this behavior.
Note : This is an advanced setting
neverDropUpdatedRows
- neverDropUpdatedRows Default value is false
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic Boolean getNeverDropUpdatedRows()
setCriteria(com.smartgwt.client.data.Criteria)
are applied to it, and it may disappear from the cache. Set this flag to true to disable this behavior.
public void setUpdatePartialCache(Boolean updatePartialCache) throws IllegalStateException
updatePartialCache
is false, the cache will be invalidated and new data fetched. If updatePartialCache is enabled and an "add" or "update" operation succeeds with a partial cache:
Note : This is an advanced setting
updatePartialCache
- updatePartialCache Default value is true
IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic Boolean getUpdatePartialCache()
updatePartialCache
is false, the cache will be invalidated and new data fetched. If updatePartialCache is enabled and an "add" or "update" operation succeeds with a partial cache:
public boolean allMatchingRowsCached()
Returns false if this is a paged data set, and the entire set of records that match the current criteria has not been retrieved from the server.
public boolean allRowsCached()
Becomes true only when the ResultSet obtains a complete cache after a fetch with empty criteria.
public Map getValueMap(String idField, String displayField)
{ item[idField] -> item[displayField] }
, for all items in the list. If more than
one item has the same idProperty
, the value for the later item in the list will clobber the value for the
earlier item. If this method is called when the allMatchingRowsCached()
, it
will trigger fetches, and will return a valueMap reflecting only the currently loaded rows.
getValueMap
in class RecordList
idField
- Property to use as ID (data value) in the valueMapdisplayField
- Property to use a display value in the valueMap
public int getLength()
This length can only be known, even
approximately, when the first results are retrieved from the server. Before then, the ResultSet returns a large length
in order to encourage viewers to ask for rows. lengthIsKnown()
can be called
to determine whether an actual length is known.
getLength
in class RecordList
public int indexOf(Record record)
If pos is specified, starts looking after that position.
Returns -1 if not found.
NOTE: ResultSet.indexOf() only inspects the current cache of records, so it is only appropriate for temporary presentation purposes. For example, it would not be appropriate to hold onto a record and attempt to use indexOf() to determine if it had been deleted.
indexOf
in class RecordList
record
- object to look for
public int indexOf(Record record, int pos, int endPos)
If pos is specified, starts looking after that position.
Returns -1 if not found.
NOTE: ResultSet.indexOf() only inspects the current cache of records, so it is only appropriate for temporary presentation purposes. For example, it would not be appropriate to hold onto a record and attempt to use indexOf() to determine if it had been deleted.
indexOf
in class RecordList
record
- object to look forpos
- earliest index to considerendPos
- last index to consider
public Record get(int pos)
All List access methods of the ResultSet have the semantics described
in getRange()
.
get
in class RecordList
pos
- position of the element to get
public Record[] getRange(int start, int end)
Calling getRange for records that have not yet loaded will trigger an asynchronous fetch. The
returned data will contain the marker value Array.LOADING
as a placeholder for records being fetched. If
any rows needed to be fetched, dataArrived()
will fire when they arrive.
getRange
in class RecordList
start
- start positionend
- end position
public Boolean lengthIsKnown()
getLength()
will be an arbitrary, large value if the actual length is not known.
public Boolean rowIsLoaded(int rowNum)
Unlike get(), will not trigger a server fetch.
rowNum
- row to check
public Boolean rangeIsLoaded(int startRow, int endRow)
startRow
- start position, inclusiveendRow
- end position, exclusive
public Record findByKey(String keyValue)
'dataSource'
.
keyValue
- primary key value to search for
public int compareCriteria(Criteria newCriteria, Criteria oldCriteria)
DataSource#compareCriteria
to determine whether new
criteria is guaranteed more restrictive, equivalent to the old criteria, or not guaranteed more restrictive, returning
1, 0 or -1 respectively. Override this method or DataSource#compareCriteria
to
implement your own client-side filtering behavior.
newCriteria
- new filter criteriaoldCriteria
- old filter criteria
public int compareCriteria(Criteria newCriteria, Criteria oldCriteria, DSRequest requestProperties, String policy)
DataSource#compareCriteria
to determine whether new
criteria is guaranteed more restrictive, equivalent to the old criteria, or not guaranteed more restrictive, returning
1, 0 or -1 respectively. Override this method or DataSource#compareCriteria
to
implement your own client-side filtering behavior.
newCriteria
- new filter criteriaoldCriteria
- old filter criteriarequestProperties
- dataSource request propertiespolicy
- overrides CriteriaPolicy
public Boolean willFetchData(Criteria newCriteria)
textMatchStyle
parameter determines whether a
change of text-match style will require a server fetch - for example if filter is being changed between an exact match
(from e.g: ListGrid.fetchData()
) and a substring match (from e.g: ListGrid.filterData()
).ListGrid.fetchData()
or ListGrid.filterData()
would cause a server side fetch when passed a certain set of criteria.
newCriteria
- new criteria to test.
public Boolean willFetchData(Criteria newCriteria, String textMatchStyle)
textMatchStyle
parameter determines whether a
change of text-match style will require a server fetch - for example if filter is being changed between an exact match
(from e.g: ListGrid.fetchData()
) and a substring match (from e.g: ListGrid.filterData()
).ListGrid.fetchData()
or ListGrid.filterData()
would cause a server side fetch when passed a certain set of criteria.
newCriteria
- new criteria to test.textMatchStyle
- New text match style. If not passed assumes textMatchStyle will not be modified.
public void filterLocalData()
This method is automatically called by
setCriteria(com.smartgwt.client.data.Criteria)
when criteria have actually changed, as well as in various other
situations. You could only need to call this method directly if:
useClientFiltering
:true) and active allMatchingRowsCached()
. get(int)
)
public void invalidateCache()
Generally a ResultSet will observe and incorporate updates to the
DataSource that provides it's records, but when this is not possible, invalidateCache()
allows manual cache
invalidation.
invalidateCache()
fires dataChanged()
, which may cause components which as
using this ResultSet to request new data for display, triggering server fetches.
public void dataArrived(int startRow, int endRow)
When
dataArrived()
fires, an immediate call to getRange()
with the startRow
and
endRow
passed as arguments will return a List with no Array.LOADING
markers.
startRow
- starting index of rows that have just loadedendRow
- ending index of rows that have just loaded, non-inclusivepublic Record[] findAll(Map properties)
findAll
in class RecordList
properties
- set of properties and values to match
public Record[] findAll(String propertyName, String value)
findAll
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public Record[] findAll(String propertyName, int value)
findAll
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public Record[] findAll(String propertyName, float value)
findAll
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public Record[] findAll(String propertyName, boolean value)
findAll
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public Record[] findAll(String propertyName, Date value)
findAll
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public Record find(Map properties)
properties
- set of properties and values to match
public Record find(String propertyName, String value)
RecordList.find(java.lang.String, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
find
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public Record find(String propertyName, int value)
RecordList.find(java.lang.String, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
find
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public Record find(String propertyName, float value)
RecordList.find(java.lang.String, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
find
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public Record find(String propertyName, boolean value)
RecordList.find(java.lang.String, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
find
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public Record find(String propertyName, Date value)
RecordList.find(java.lang.String, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
find
in class RecordList
propertyName
- property to matchvalue
- value to compare against (if propertyName is a string)
public int findIndex(Map properties)
RecordList.findIndex(java.util.Map)
. Checks only loaded rows and will not trigger a fetch.
findIndex
in class RecordList
properties
- set of properties and values to
match
public int findIndex(String propertyName, String value)
RecordList.findIndex(java.util.Map)
. Checks only loaded rows and will not trigger a fetch.
findIndex
in class RecordList
propertyName
- property to matchvalue
- value to compare against
public int findIndex(String propertyName, int value)
RecordList.findIndex(java.util.Map)
. Checks only loaded rows and will not trigger a fetch.
findIndex
in class RecordList
propertyName
- property to matchvalue
- value to compare against
public int findIndex(String propertyName, float value)
RecordList.findIndex(java.util.Map)
. Checks only loaded rows and will not trigger a fetch.
findIndex
in class RecordList
propertyName
- property to matchvalue
- value to compare against
public int findIndex(String propertyName, boolean value)
RecordList.findIndex(java.util.Map)
. Checks only loaded rows and will not trigger a fetch.
findIndex
in class RecordList
propertyName
- property to matchvalue
- value to compare against
public int findIndex(String propertyName, Date value)
RecordList.findIndex(java.util.Map)
. Checks only loaded rows and will not trigger a fetch.
findIndex
in class RecordList
propertyName
- property to matchvalue
- value to compare against
public int findNextIndex(int startIndex, String propertyName)
RecordList.findNextIndex(int, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
findNextIndex
in class RecordList
startIndex
- first index to considerpropertyName
- property to match
public int findNextIndex(int startIndex, Map properties)
RecordList.findNextIndex(int, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
findNextIndex
in class RecordList
startIndex
- first index to considerproperties
- set of properties and values to match
public int findNextIndex(int startIndex, String propertyName, String value, int endIndex)
RecordList.findNextIndex(int, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
findNextIndex
in class RecordList
startIndex
- first index to considerpropertyName
- property to matchvalue
- value to compare against (if propertyName is a string)endIndex
- last index to consider
public int findNextIndex(int startIndex, String propertyName, int value, int endIndex)
RecordList.findNextIndex(int, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
findNextIndex
in class RecordList
startIndex
- first index to considerpropertyName
- property to matchvalue
- value to compare against (if propertyName is a string)endIndex
- last index to consider
public int findNextIndex(int startIndex, String propertyName, float value, int endIndex)
RecordList.findNextIndex(int, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
findNextIndex
in class RecordList
startIndex
- first index to considerpropertyName
- property to matchvalue
- value to compare against (if propertyName is a string)endIndex
- last index to consider
public int findNextIndex(int startIndex, String propertyName, boolean value, int endIndex)
RecordList.findNextIndex(int, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
findNextIndex
in class RecordList
startIndex
- first index to considerpropertyName
- property to matchvalue
- value to compare against (if propertyName is a string)endIndex
- last index to consider
public int findNextIndex(int startIndex, String propertyName, Date value, int endIndex)
RecordList.findNextIndex(int, java.lang.String)
. Checks only loaded rows and will not trigger a fetch.
findNextIndex
in class RecordList
startIndex
- first index to considerpropertyName
- property to matchvalue
- value to compare against (if propertyName is a string)endIndex
- last index to consider
public HandlerRegistration addDataArrivedHandler(DataArrivedHandler handler)
Notification fired when data has arrived from the server and has been successfully integrated into the cache.
When
dataArrived()
fires, an immediate call to getRange()
with the startRow
and
endRow
passed as arguments will return a List with no Array.LOADING
markers.
addDataArrivedHandler
in interface HasDataArrivedHandlers
handler
- the dataArrived handler
HandlerRegistration
used to remove this handlerpublic String getAttributeAsString(String property)
getAttributeAsString
in class BaseClass
public Date getAttributeAsDate(String property)
getAttributeAsDate
in class BaseClass
public Integer getAttributeAsInt(String property)
getAttributeAsInt
in class BaseClass
public Double getAttributeAsDouble(String property)
getAttributeAsDouble
in class BaseClass
public Element getAttributeAsElement(String property)
getAttributeAsElement
in class BaseClass
public JavaScriptObject getAttributeAsJavaScriptObject(String property)
getAttributeAsJavaScriptObject
in class BaseClass
public Float getAttributeAsFloat(String property)
getAttributeAsFloat
in class BaseClass
public Boolean getAttributeAsBoolean(String property)
getAttributeAsBoolean
in class BaseClass
public void setProperty(String property, String value)
setProperty
in class BaseClass
public void setProperty(String property, boolean value)
setProperty
in class BaseClass
public void setProperty(String property, double value)
setProperty
in class BaseClass
public void setProperty(String property, JavaScriptObject value)
setProperty
in class BaseClass
public static boolean isResultSet(JavaScriptObject data)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |