pattern-view.js
1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
var text_ops = ['eq', 'ne', 'bw', 'bn', 'ew', 'en', 'cn', 'nc', 're', 'nr'];
var eqne = ['eq', 'ne'];
$.extend(slickgrid, {
grid_caption: "Wzory",
grid_element_id: 'pattern-grid',
main_field: 'name',
initial_columns: ['name', 'type', 'pos'],
initial_sort_rules: [],
all_columns: {
'name': {id: 'name', name: 'Id', field: 'name'},
'type': {id: 'type', name: 'Typ', field: 'type'},
'pos': {id: 'pos', name: 'Cz. mowy', field: 'lexical_class'},
'example': {id: 'example', name: 'Przykład', field: 'example'}
},
filter_fields: {
'name': {name: 'Id', gender: 'm', ops: text_ops},
'lexical_class': {
name: 'Część mowy',
gender: 'f',
ops: eqne,
options: $dj.lexical_class_options
},
'type': {
name: 'Typ',
gender: 'm',
ops: eqne,
optgroups: $dj.pattern_type_options
}
},
load_content: function(id) {
"use strict";
function check() {
return id === slickgrid.active_id();
}
edit.busy_on();
edit.load_content(id, check);
},
init_sort: function() {}
});