add a spinner to the validatebutton
[myslice.git] / plugins / validatebutton / static / js / validatebutton.js
1 // first application is for the 'validation' button in the topmenu
2 // if the subject query is non empty, then we turn on the subject button
3 // that is provided through button_domid
4
5 (function($){
6
7     var debug=false;
8 //    debug=true
9
10     var ValidateButton = Plugin.extend({
11
12         init: function(options, element) {
13             this._super(options, element);
14             this.listen_query(options.query_uuid);
15             this.triggered=false;
16         },
17
18         // Could be the default in parent
19         on_query_in_progress: function() {
20             this.spin();
21         },
22
23         // we have received at least one answer: we'll do something
24         on_new_record: function (record) {
25             // we only need to act on the first record
26             if (this.triggered) return;
27             if (debug) messages.debug("validatebutton.on_query_done - turning on "+this.options.button_domid);
28             $('#'+this.options.button_domid).removeClass('disabled');
29             this.unspin();
30             this.triggered=true;
31         },
32         // for reference only, since there is nothing we need to do at this point
33         on_query_done: function() {
34             if (!this.triggered) this.unspin();
35         },
36     });
37
38     $.plugin('ValidateButton', ValidateButton);
39
40 })(jQuery);