t

Loading Panel Widget

· 14년 전 · 2017

                                     A YUI Loading Panel Widget


아래를 추가해서 사용하세요.
var loadingPanel = new yuiLoadingPanel();

//loadingPanel.show();
//loadingPanel.show("Processing...");
//loadingPanel.hide();

The user can close the loading box by clicking on the cancel link. If you want to handle this situation, you can subscribe to the cancelEvent:

loadingPanel.cancelEvent.subscribe(function(e, a, o){
  alert('You clicked cancel!');
});

loadingpanel.js:

$D = YAHOO.util.Dom;
$E = YAHOO.util.Event;
var yuiLoadingPanel = function(conf){
    conf = conf == undefined ? new Array() : conf;
    conf.id = conf.id == undefined ? 'yuiLoadingPanel':confi.id;
    conf.header = conf.header == undefined ? 'Loading, please wait...':conf.header;
    conf.width = conf.width == undefined ? '240px':conf.width;
    this.conf = conf;
    this.cancelEvent = new YAHOO.util.CustomEvent("cancelEvent", this);
    this.init();
	
};

yuiLoadingPanel.prototype = {
    init:function(){
        var loadingPanel = new YAHOO.widget.Panel(this.conf.id,{
            width:this.conf.width,
	    fixedcenter:true,
            close:false,
            draggable:false,
            modal:true,
            visible:false
        });
    
       loadingPanel.setBody(this.conf.header + 
               '<img src="http://us.i1.yimg.com/us.yimg.com/i/us/per/gr/gp/rel_interstitial_loading.gif" />');
               loadingPanel.render(document.body);
               $D.addClass(loadingPanel.id, 'tcc_lightboxLoader');
               var cancelLink = document.createElement('a');
               $D.setStyle(cancelLink, 'cursor', 'pointer');
               cancelLink.appendChild(document.createTextNode('Cancel'));
               $E.on(cancelLink, 'click', function(e, o){
       	           o.self.loadingPanel.hide();
       	           o.self.cancelEvent.fire();
               }, {self:this});
               loadingPanel.appendToBody(document.createElement('br'));
               loadingPanel.appendToBody(cancelLink);
               $D.setStyle(loadingPanel.body, 'text-align', 'center');
               $D.addClass(document.body, 'yui-skin-sam');
        this.loadingPanel = loadingPanel;
    },
    show:function(text){
        if(text != undefined){
            this.loadingPanel.setHeader(text);
        }else{
	    this.loadingPanel.setHeader(this.conf.header);
	}
	this.loadingPanel.show();
    },
    hide:function(){
        this.loadingPanel.hide();
    }
};


|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 2,916
14년 전 조회 1,913
14년 전 조회 1,861
14년 전 조회 1,559
14년 전 조회 1,813
14년 전 조회 2,834
14년 전 조회 1,418
14년 전 조회 3,388
14년 전 조회 1,738
14년 전 조회 1,431
14년 전 조회 1,424
14년 전 조회 1,689
14년 전 조회 1,604
14년 전 조회 1,500
14년 전 조회 2,013
14년 전 조회 1,416
14년 전 조회 2,062
14년 전 조회 2,445
14년 전 조회 1,415
14년 전 조회 1,571
14년 전 조회 1,393
14년 전 조회 1,554
14년 전 조회 1,998
14년 전 조회 1,681
14년 전 조회 1,807
14년 전 조회 1,609
14년 전 조회 1,776
14년 전 조회 1,356
14년 전 조회 2,226
14년 전 조회 1,564
14년 전 조회 2,316
14년 전 조회 9,066
14년 전 조회 1,652
14년 전 조회 2,491
14년 전 조회 2,225
14년 전 조회 2,479
14년 전 조회 2,856
14년 전 조회 1,445
14년 전 조회 1,587
14년 전 조회 7,376
14년 전 조회 1,542
14년 전 조회 1,478
14년 전 조회 2,649
14년 전 조회 1,541
14년 전 조회 1,530
14년 전 조회 3,001
14년 전 조회 1,607
14년 전 조회 4,528
14년 전 조회 4,660
14년 전 조회 2,018
14년 전 조회 1,568
14년 전 조회 2,228
14년 전 조회 1,522
14년 전 조회 1,819
14년 전 조회 1,398
14년 전 조회 8,310
14년 전 조회 1,936
14년 전 조회 1,341
14년 전 조회 1,505
14년 전 조회 2,201
14년 전 조회 1,662
14년 전 조회 1,516
14년 전 조회 1,594
14년 전 조회 1,514
14년 전 조회 1,375
14년 전 조회 1,496
14년 전 조회 1,508
14년 전 조회 1,489
14년 전 조회 1,541
14년 전 조회 1,802
14년 전 조회 1,797
14년 전 조회 2,071
14년 전 조회 1,671
14년 전 조회 1,592
14년 전 조회 1,500
14년 전 조회 1,444
14년 전 조회 1,451
14년 전 조회 1,630
14년 전 조회 2,846
14년 전 조회 1,498
14년 전 조회 1,817
14년 전 조회 2,982
14년 전 조회 2,104
14년 전 조회 1,842
14년 전 조회 5,586
14년 전 조회 2,796
14년 전 조회 1,613
14년 전 조회 1,522
14년 전 조회 1,489
14년 전 조회 1,380
14년 전 조회 2,662
14년 전 조회 3,969
14년 전 조회 1,465
14년 전 조회 1,658
14년 전 조회 2,633
14년 전 조회 1,487
14년 전 조회 2,141
14년 전 조회 2,487
14년 전 조회 1.1만
14년 전 조회 2,032