com.gwtext.client.data
Interface StoreQueryFunction


public interface StoreQueryFunction

Store query function.

See Also:
Store.queryBy(StoreQueryFunction)

Method Summary
 boolean test(Record record, java.lang.String id)
          Callback function invoked by Store.queryBy(StoreQueryFunction).
 

Method Detail

test

boolean test(Record record,
             java.lang.String id)
Callback function invoked by Store.queryBy(StoreQueryFunction). Return true if the record matches.

Parameters:
record - the record to test
id - the record ID
Returns:
true to include Record in result
See Also:
Store.queryBy(StoreQueryFunction)