t

Loading Panel Widget

· 14년 전 · 1903

                                     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,820
14년 전 조회 1,814
14년 전 조회 1,742
14년 전 조회 1,467
14년 전 조회 1,708
14년 전 조회 2,739
14년 전 조회 1,313
14년 전 조회 3,279
14년 전 조회 1,623
14년 전 조회 1,343
14년 전 조회 1,335
14년 전 조회 1,596
14년 전 조회 1,509
14년 전 조회 1,417
14년 전 조회 1,915
14년 전 조회 1,335
14년 전 조회 1,968
14년 전 조회 2,351
14년 전 조회 1,325
14년 전 조회 1,469
14년 전 조회 1,301
14년 전 조회 1,475
14년 전 조회 1,898
14년 전 조회 1,593
14년 전 조회 1,714
14년 전 조회 1,515
14년 전 조회 1,698
14년 전 조회 1,266
14년 전 조회 2,133
14년 전 조회 1,469
14년 전 조회 2,222
14년 전 조회 8,967
14년 전 조회 1,562
14년 전 조회 2,402
14년 전 조회 2,145
14년 전 조회 2,393
14년 전 조회 2,768
14년 전 조회 1,355
14년 전 조회 1,495
14년 전 조회 7,285
14년 전 조회 1,459
14년 전 조회 1,388
14년 전 조회 2,574
14년 전 조회 1,448
14년 전 조회 1,446
14년 전 조회 2,913
14년 전 조회 1,517
14년 전 조회 4,432
14년 전 조회 4,562
14년 전 조회 1,904
14년 전 조회 1,468
14년 전 조회 2,144
14년 전 조회 1,425
14년 전 조회 1,727
14년 전 조회 1,311
14년 전 조회 8,216
14년 전 조회 1,857
14년 전 조회 1,249
14년 전 조회 1,407
14년 전 조회 2,114
14년 전 조회 1,547
14년 전 조회 1,420
14년 전 조회 1,505
14년 전 조회 1,415
14년 전 조회 1,276
14년 전 조회 1,389
14년 전 조회 1,402
14년 전 조회 1,382
14년 전 조회 1,446
14년 전 조회 1,698
14년 전 조회 1,693
14년 전 조회 1,968
14년 전 조회 1,562
14년 전 조회 1,491
14년 전 조회 1,395
14년 전 조회 1,352
14년 전 조회 1,347
14년 전 조회 1,526
14년 전 조회 2,748
14년 전 조회 1,406
14년 전 조회 1,730
14년 전 조회 2,886
14년 전 조회 2,010
14년 전 조회 1,754
14년 전 조회 5,498
14년 전 조회 2,702
14년 전 조회 1,515
14년 전 조회 1,435
14년 전 조회 1,392
14년 전 조회 1,280
14년 전 조회 2,556
14년 전 조회 3,888
14년 전 조회 1,368
14년 전 조회 1,560
14년 전 조회 2,545
14년 전 조회 1,398
14년 전 조회 2,053
14년 전 조회 2,391
14년 전 조회 1.1만
14년 전 조회 1,927