|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- // Copyright (c) 2012 Web Notes Technologies Pvt Ltd (http://erpnext.com)
- //
- // MIT License (MIT)
- //
- // Permission is hereby granted, free of charge, to any person obtaining a
- // copy of this software and associated documentation files (the "Software"),
- // to deal in the Software without restriction, including without limitation
- // the rights to use, copy, modify, merge, publish, distribute, sublicense,
- // and/or sell copies of the Software, and to permit persons to whom the
- // Software is furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
- // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
- // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- // CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
- // OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
-
- wn.provide('wn.ui');
-
- var cur_dialog;
-
- wn.ui.open_dialogs = [];
- wn.ui.Dialog = wn.ui.FieldGroup.extend({
- init: function(opts) {
- this.display = false;
- if(!opts.width) opts.width = 480;
-
- $.extend(this, opts);
- this.make();
- },
- make: function() {
- this.$wrapper = $('<div class="modal" style="overflow: auto;">\
- <div class="modal-dialog">\
- <div class="modal-content">\
- <div class="modal-header">\
- <a type="button" class="close" \
- data-dismiss="modal" aria-hidden="true">×</a>\
- <h4 class="modal-title"></h4>\
- </div>\
- <div class="modal-body">\
- </div>\
- </div>\
- </div>\
- </div>')
- .appendTo(document.body);
- this.wrapper = this.$wrapper.find('.modal-dialog').get(0);
- this.make_head();
- this.body = this.$wrapper.find(".modal-body").get(0);
-
- // make fields (if any)
- this._super();
-
- var me = this;
- this.$wrapper
- .on("hide.bs.modal", function() {
- me.display = false;
- if(wn.ui.open_dialogs[wn.ui.open_dialogs.length-1]===me) {
- wn.ui.open_dialogs.pop();
- if(wn.ui.open_dialogs.length)
- cur_dialog = wn.ui.open_dialogs[wn.ui.open_dialogs.length-1];
- else
- cur_dialog = null;
- }
- me.onhide && me.onhide();
- })
- .on("shown.bs.modal", function() {
- // focus on first input
- me.display = true;
- cur_dialog = me;
- wn.ui.open_dialogs.push(me);
- var first = me.$wrapper.find(':input:first');
- if(first.length && first.attr("data-fieldtype")!="Date") {
- try {
- first.get(0).focus();
- } catch(e) {
- console.log("Dialog: unable to focus on first input: " + e);
- }
- }
- me.onshow && me.onshow();
- })
-
-
- },
- make_head: function() {
- var me = this;
- //this.appframe = new wn.ui.AppFrame(this.wrapper);
- //this.appframe.set_document_title = false;
- this.set_title(this.title);
- },
- set_title: function(t) {
- this.$wrapper.find(".modal-title").html(t);
- },
- show: function() {
- // show it
- this.$wrapper.modal("show");
- },
- hide: function(from_event) {
- this.$wrapper.modal("hide");
-
- },
- no_cancel: function() {
- this.appframe.$titlebar.find('.close').toggle(false);
- }
- });
-
- // close open dialogs on ESC
- $(document).bind('keydown', function(e) {
- if(cur_dialog && !cur_dialog.no_cancel_flag && e.which==27) {
- cur_dialog.hide();
- }
- });
|