t

Loading Panel Widget

· 14년 전 · 1906

                                     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,822
14년 전 조회 1,816
14년 전 조회 1,747
14년 전 조회 1,469
14년 전 조회 1,712
14년 전 조회 2,743
14년 전 조회 1,317
14년 전 조회 3,282
14년 전 조회 1,626
14년 전 조회 1,349
14년 전 조회 1,337
14년 전 조회 1,602
14년 전 조회 1,512
14년 전 조회 1,423
14년 전 조회 1,916
14년 전 조회 1,336
14년 전 조회 1,972
14년 전 조회 2,353
14년 전 조회 1,332
14년 전 조회 1,474
14년 전 조회 1,304
14년 전 조회 1,476
14년 전 조회 1,900
14년 전 조회 1,600
14년 전 조회 1,717
14년 전 조회 1,515
14년 전 조회 1,699
14년 전 조회 1,269
14년 전 조회 2,134
14년 전 조회 1,475
14년 전 조회 2,223
14년 전 조회 8,969
14년 전 조회 1,564
14년 전 조회 2,404
14년 전 조회 2,146
14년 전 조회 2,393
14년 전 조회 2,770
14년 전 조회 1,358
14년 전 조회 1,497
14년 전 조회 7,286
14년 전 조회 1,461
14년 전 조회 1,392
14년 전 조회 2,575
14년 전 조회 1,452
14년 전 조회 1,450
14년 전 조회 2,918
14년 전 조회 1,519
14년 전 조회 4,434
14년 전 조회 4,563
14년 전 조회 1,907
14년 전 조회 1,471
14년 전 조회 2,147
14년 전 조회 1,429
14년 전 조회 1,729
14년 전 조회 1,313
14년 전 조회 8,217
14년 전 조회 1,860
14년 전 조회 1,251
14년 전 조회 1,408
14년 전 조회 2,116
14년 전 조회 1,551
14년 전 조회 1,422
14년 전 조회 1,508
14년 전 조회 1,417
14년 전 조회 1,278
14년 전 조회 1,392
14년 전 조회 1,403
14년 전 조회 1,387
14년 전 조회 1,448
14년 전 조회 1,699
14년 전 조회 1,697
14년 전 조회 1,969
14년 전 조회 1,563
14년 전 조회 1,496
14년 전 조회 1,398
14년 전 조회 1,359
14년 전 조회 1,348
14년 전 조회 1,529
14년 전 조회 2,752
14년 전 조회 1,410
14년 전 조회 1,731
14년 전 조회 2,889
14년 전 조회 2,013
14년 전 조회 1,755
14년 전 조회 5,501
14년 전 조회 2,703
14년 전 조회 1,518
14년 전 조회 1,437
14년 전 조회 1,395
14년 전 조회 1,285
14년 전 조회 2,563
14년 전 조회 3,892
14년 전 조회 1,372
14년 전 조회 1,564
14년 전 조회 2,548
14년 전 조회 1,398
14년 전 조회 2,055
14년 전 조회 2,393
14년 전 조회 1.1만
14년 전 조회 1,932