t

Loading Panel Widget

· 14년 전 · 1970

                                     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,870
14년 전 조회 1,871
14년 전 조회 1,811
14년 전 조회 1,520
14년 전 조회 1,768
14년 전 조회 2,793
14년 전 조회 1,376
14년 전 조회 3,343
14년 전 조회 1,696
14년 전 조회 1,394
14년 전 조회 1,396
14년 전 조회 1,650
14년 전 조회 1,559
14년 전 조회 1,465
14년 전 조회 1,973
14년 전 조회 1,381
14년 전 조회 2,022
14년 전 조회 2,409
14년 전 조회 1,377
14년 전 조회 1,525
14년 전 조회 1,349
14년 전 조회 1,516
14년 전 조회 1,957
14년 전 조회 1,645
14년 전 조회 1,767
14년 전 조회 1,562
14년 전 조회 1,737
14년 전 조회 1,322
14년 전 조회 2,192
14년 전 조회 1,517
14년 전 조회 2,267
14년 전 조회 9,020
14년 전 조회 1,603
14년 전 조회 2,449
14년 전 조회 2,181
14년 전 조회 2,434
14년 전 조회 2,811
14년 전 조회 1,404
14년 전 조회 1,541
14년 전 조회 7,332
14년 전 조회 1,499
14년 전 조회 1,441
14년 전 조회 2,613
14년 전 조회 1,496
14년 전 조회 1,487
14년 전 조회 2,959
14년 전 조회 1,566
14년 전 조회 4,472
14년 전 조회 4,609
14년 전 조회 1,971
14년 전 조회 1,516
14년 전 조회 2,194
14년 전 조회 1,473
14년 전 조회 1,778
14년 전 조회 1,357
14년 전 조회 8,258
14년 전 조회 1,890
14년 전 조회 1,298
14년 전 조회 1,458
14년 전 조회 2,152
14년 전 조회 1,608
14년 전 조회 1,464
14년 전 조회 1,545
14년 전 조회 1,470
14년 전 조회 1,323
14년 전 조회 1,451
14년 전 조회 1,446
14년 전 조회 1,432
14년 전 조회 1,495
14년 전 조회 1,746
14년 전 조회 1,746
14년 전 조회 2,019
14년 전 조회 1,617
14년 전 조회 1,548
14년 전 조회 1,443
14년 전 조회 1,396
14년 전 조회 1,393
14년 전 조회 1,581
14년 전 조회 2,799
14년 전 조회 1,452
14년 전 조회 1,770
14년 전 조회 2,941
14년 전 조회 2,065
14년 전 조회 1,798
14년 전 조회 5,543
14년 전 조회 2,746
14년 전 조회 1,562
14년 전 조회 1,471
14년 전 조회 1,440
14년 전 조회 1,327
14년 전 조회 2,615
14년 전 조회 3,933
14년 전 조회 1,406
14년 전 조회 1,601
14년 전 조회 2,593
14년 전 조회 1,438
14년 전 조회 2,090
14년 전 조회 2,439
14년 전 조회 1.1만
14년 전 조회 1,985