UNPKG
extjs-gpl
Version:
latest (6.2.0)
6.2.0
GPL licensed version of Sencha Ext JS
github.com/tananaev/extjs-gpl
tananaev/extjs-gpl
extjs-gpl
/
templates
/
admin-dashboard
/
app
/
store
/
search
/
Users.js
20 lines
(14 loc)
•
322 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Ext.
define
(
'Admin.store.search.Users'
, {
extend
:
'Ext.data.Store'
,
alias
:
'store.searchusers'
,
model
:
'Admin.model.search.User'
,
proxy
: {
type
:
'api'
,
url
:
'~api/search/users'
},
autoLoad
:
'true'
,
sorters
: {
direction
:
'ASC'
,
property
:
'fullname'
} });