-
-
Notifications
You must be signed in to change notification settings - Fork 278
/
Copy pathdeferred-datatable.js
78 lines (70 loc) · 2.54 KB
/
deferred-datatable.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
(function($){
var methods = {
init : function(options) {
;
},
getData : function() {
var data = this.data('f2dtrows');
if (!data) {
return [];
}
return data;
},
removeAll : function() {
var existing_timer = this.data('f2dttimer');
if (existing_timer) {
clearTimeout(existing_timer);
}
this.data('f2dtrows', null);
this.data('f2dtdrawn', null);
this.bootstrapTable('removeAll');
},
append : function(data) {
var existing_timer = this.data('f2dttimer');
if (existing_timer) {
clearTimeout(existing_timer);
}
var existing_data = this.data('f2dtrows');
if (!existing_data) {
this.data('f2dtrows', data);
} else {
this.data('f2dtrows', existing_data.concat(data));
}
var drawn_data = this.data('f2dtdrawn');
if (!drawn_data) {
this.data('f2dtdrawn', data);
} else {
this.data('f2dtdrawn', drawn_data.concat(data));
}
if (this.data('f2dtactive')) {
this.data('f2dttimer', setTimeout(function(el) {
var drawn_data = el.data('f2dtdrawn');
if (drawn_data) {
el.data('f2dtdrawn', null);
el.bootstrapTable('append', drawn_data);
}
}, 200, this));
}
},
setActive : function(isactive) {
this.data('f2dtactive', isactive);
this.data('f2dttimer', setTimeout(function(el) {
var drawn_data = el.data('f2dtdrawn');
if (drawn_data) {
el.data('f2dtdrawn', null);
el.bootstrapTable('append', drawn_data);
}
}, 200, this));
}
};
$.fn.deferredBootstrapTable = function(methodOrOptions) {
if ( methods[methodOrOptions] ) {
return methods[ methodOrOptions ].apply( this, Array.prototype.slice.call( arguments, 1 ));
} else if ( typeof methodOrOptions === 'object' || ! methodOrOptions ) {
// Default to "init"
return methods.init.apply( this, arguments );
} else {
$.error( 'Method ' + methodOrOptions + ' does not exist on jQuery.deferredBootstrapTable' );
}
};
})(jQuery);