var MedalRankInfo = function MedalRankInfo(){ this.$super.apply(this, arguments); }.inherit(Lego.BaseObject, { initialize : function(){ this.controller = this.setController($('medalRankInfo'), 'medalRankInfo'); }, setController : function(DOMElement, UITemplateName){ var controller = new Lego.Controller( new Lego.Model.JSONData(), new Lego.View.UIElement(DOMElement, new Lego.View.UITemplate(UITemplateName)) ); controller.bind('update', controller.render); controller.bind('render', function(){ daum.addClassName($$('.list_layer:last', controller.getElement())[0], 'lst'); this.controller.setEvents({ 'click .btn_close' : function(e){ daum.stopEvent(e); this.controller.destroy(); }.bind(this) }); }.bind(this)); return controller; }, load : function(team_id, top){ this.controller.request('/planus_proxy/planus/api/london2012/record/event_medal_count_by_team.json', { 'team_id' : team_id }); daum.setStyle($$('.daum_layer', this.controller.getElement())[0], { "top" : daum.Number.px(top + 38) }) } }); var MedalRanking = function RankingNews(){ this.$super.apply(this, arguments); }.inherit(Lego.BaseObject, { initialize : function(type){ this.controller = this.setController($('rankTbl'), 'medalRank'); this.number = new daum.ImgNumber({template:'#{num}', iswrite : false}); this.controller.request('/planus_proxy/planus/api/london2012/record/medal_rank.json', { 'order' : type || '' }); }, setController : function(DOMElement, UITemplateName){ var controller = new Lego.Controller( new Lego.Model.JSONData(), new Lego.View.UIElement(DOMElement, new Lego.View.UITemplate(UITemplateName)) ); controller.bind('update', controller.appendRender); controller.bind('update', function(d){ if(d.medals.length > 0){ var data = d.medals[0]; $$('.num_player')[0].innerHTML = this.number.number(data.GOLD_RANK); $$('.num_medal')[0].innerHTML = this.number.number(data.SUM); $$('.announcetime')[0].innerHTML = data.ANNOUNCE_TIME ? formatedDatetime("m월d일 H시 i분", data.ANNOUNCE_TIME) : "-"; } }.bind(this)); controller.bind('render', this.setEvents.bind(this)); return controller; }, setEvents : function(){ this.controller.setEvents({ 'click tr' : function(e){ this.setMedalInfo(e.delegateTarget.getAttribute('teamid'), daum.Element.getCoordsTarget(e.delegateTarget, $$('.section_countryrank')[0]).top); }.bind(this) }, null, true); }, setMedalInfo : function(teamid, top){ medalInfo.load(teamid, top); } }); var medalInfo = new MedalRankInfo(); new MedalRanking();
광고
EXTENSIBLE_BANNER_PACK({secid:'0JB22' ,dir:'RT'});