1 | <?php |
||
7 | class AbstractStore extends Base |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * true to defer any filtering operation to the server. If false, filtering is done locally on the client. |
||
12 | * @param $bool |
||
13 | * @return $this |
||
14 | */ |
||
15 | public function setRemoteFilter($bool){ |
||
18 | |||
19 | /** |
||
20 | * true if the sorting should be performed on the server side, false if it is local only |
||
21 | * @param $bool |
||
22 | * @return $this |
||
23 | */ |
||
24 | public function setRemoteSort($bool){ |
||
27 | |||
28 | /** |
||
29 | * Unique identifier for this store. If present, this Store will be registered with the Ext.data.StoreManager, |
||
30 | * making it easy to reuse elsewhere. |
||
31 | * @param $storeId |
||
32 | * @return $this |
||
33 | */ |
||
34 | public function setStoreId($storeId){ |
||
37 | |||
38 | public function getStoreId(){ |
||
41 | |||
42 | /** |
||
43 | * The number of records considered to form a 'page'. This is used to power the built-in paging using the nextPage |
||
44 | * and previousPage functions when the grid is paged using a PagingToolbar |
||
45 | * @param $pageSize |
||
46 | * @return $this |
||
47 | */ |
||
48 | public function setPageSize($pageSize){ |
||
51 | |||
52 | public function getPageSize(){ |
||
55 | } |