mirror of https://github.com/sipwise/ngcp-csc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.0 KiB
48 lines
1.0 KiB
Ext.define('NgcpCsc.model.GridFilters', {
|
|
extend: 'Ext.data.Model',
|
|
|
|
fields: [
|
|
'from_date',
|
|
'to_date',
|
|
'incoming',
|
|
'outgoing',
|
|
'call',
|
|
'voicemail',
|
|
'fax',
|
|
'sms',
|
|
'chat',
|
|
'missed',
|
|
'answered',
|
|
'search_term',
|
|
'name',
|
|
'groups_extension',
|
|
'hunt_policy',
|
|
'hunt_timeout',
|
|
'seats_extension',
|
|
'primary_number',
|
|
'alias_numbers',
|
|
'groups',
|
|
'mac',
|
|
'device',
|
|
'devices_seat',
|
|
'devices_type',
|
|
'devices_extension',
|
|
'devices_extension2',
|
|
'headerBarFieldInput',
|
|
'convFilterHideState',
|
|
'pbxSeatsFilterHideState',
|
|
'pbxGroupsFilterHideState',
|
|
'pbxDevicesFilterHideState'
|
|
],
|
|
|
|
proxy: {
|
|
type: 'ajax',
|
|
url: Ext.manifest.resources.path + '/data/gridfilters.json',
|
|
autoLoad: true,
|
|
reader: {
|
|
type: 'json',
|
|
rootProperty: 'data'
|
|
}
|
|
}
|
|
});
|