t

Loading Panel Widget

· 14년 전 · 1919

                                     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,833
14년 전 조회 1,832
14년 전 조회 1,764
14년 전 조회 1,482
14년 전 조회 1,729
14년 전 조회 2,757
14년 전 조회 1,329
14년 전 조회 3,299
14년 전 조회 1,644
14년 전 조회 1,361
14년 전 조회 1,355
14년 전 조회 1,613
14년 전 조회 1,523
14년 전 조회 1,430
14년 전 조회 1,928
14년 전 조회 1,344
14년 전 조회 1,984
14년 전 조회 2,362
14년 전 조회 1,342
14년 전 조회 1,486
14년 전 조회 1,314
14년 전 조회 1,483
14년 전 조회 1,910
14년 전 조회 1,611
14년 전 조회 1,725
14년 전 조회 1,529
14년 전 조회 1,708
14년 전 조회 1,283
14년 전 조회 2,143
14년 전 조회 1,482
14년 전 조회 2,233
14년 전 조회 8,983
14년 전 조회 1,571
14년 전 조회 2,416
14년 전 조회 2,156
14년 전 조회 2,400
14년 전 조회 2,776
14년 전 조회 1,370
14년 전 조회 1,503
14년 전 조회 7,300
14년 전 조회 1,472
14년 전 조회 1,403
14년 전 조회 2,586
14년 전 조회 1,460
14년 전 조회 1,458
14년 전 조회 2,924
14년 전 조회 1,529
14년 전 조회 4,438
14년 전 조회 4,571
14년 전 조회 1,920
14년 전 조회 1,474
14년 전 조회 2,160
14년 전 조회 1,435
14년 전 조회 1,739
14년 전 조회 1,323
14년 전 조회 8,223
14년 전 조회 1,870
14년 전 조회 1,270
14년 전 조회 1,423
14년 전 조회 2,126
14년 전 조회 1,561
14년 전 조회 1,429
14년 전 조회 1,512
14년 전 조회 1,432
14년 전 조회 1,288
14년 전 조회 1,399
14년 전 조회 1,409
14년 전 조회 1,396
14년 전 조회 1,460
14년 전 조회 1,709
14년 전 조회 1,712
14년 전 조회 1,979
14년 전 조회 1,577
14년 전 조회 1,510
14년 전 조회 1,407
14년 전 조회 1,362
14년 전 조회 1,360
14년 전 조회 1,536
14년 전 조회 2,760
14년 전 조회 1,418
14년 전 조회 1,742
14년 전 조회 2,899
14년 전 조회 2,024
14년 전 조회 1,763
14년 전 조회 5,512
14년 전 조회 2,709
14년 전 조회 1,527
14년 전 조회 1,445
14년 전 조회 1,405
14년 전 조회 1,294
14년 전 조회 2,571
14년 전 조회 3,901
14년 전 조회 1,379
14년 전 조회 1,572
14년 전 조회 2,561
14년 전 조회 1,406
14년 전 조회 2,065
14년 전 조회 2,404
14년 전 조회 1.1만
14년 전 조회 1,941