大约有 85 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0035 秒)
....renderHandler = new Laya.Handler(this, this.onItemUpdate); this.list_view.mouseHandler = new Laya.Handler(this, this.onItemClick); this.list_view.array = ;// 这里必须要初始化数据 } ViewActivityLimitedTask.prototype.onItemUpdate = function(_cell, _index) { var data = this.mList_.t...
来源: Laya_社区 发布时间: 20191111
...array = dataSource; this.mainUI.list.vScrollBarSkin = ""; this.mainUI.list.mouseHandler = new Laya.Handler(this, this.onSelect); this.mainUI.list.renderHandler = new Laya.Handler(this, this.onRender); Laya.stage.addChild(this.mainUI); }; GameMain.prototype.onRender = function (cell, index) { if(inde...
来源: Laya_社区 发布时间: 20170207
...nable=false后过一段时间设置mouseWheelEnable=true;无法滚动 tree mouseHandler 怎么获取条目 我用list.array=Array;数据全部插进去数组里了,但是list中没有完全展示数组数据,只展示了其中的图片部分,数组能console出,那个list中的数据也存...
来源: Laya_社区 发布时间: 20180914
...Arr[i].amount}); } } this.otherItem_list.array = data; this.otherItem_list.mouseHandler = new Handler(this,otherItem_listRender); fengjingmeng • 2018-03-21 16:44 你这个是list的逻辑,item的更新逻辑呢。item拿到数据后你做了什么处理? z624697 • 2018-03-21 16:46 现在是...
来源: Laya_社区 发布时间: 20180321
...新时触发 并发送Box,index this.storelist.mouseHandler = new Handler(this,onMouse);//当list被点击时触发 并发送event,index } public function onRender(cell:Box,index:int):void { ...
来源: Laya_社区 发布时间: 20180503
...? Laya2.6.0beta 物理引擎 刚体碰撞点位置获取不正确 tree mouseHandler 怎么获取条目 我用list.array=Array;数据全部插进去数组里了,但是list中没有完全展示数组数据,只展示了其中的图片部分,数组能console出,那个list中的数据也存在...
来源: Laya_社区 发布时间: 20170317
...llBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMouse) } onOpened(param: any) { super.onOpened(param); let imgArray = ; for (let i = 1; i < 7; i++) { imgArray.push(`ui/bg_help_0${i}.png`) } this.list_rule.array = imgArray; } ...
来源: Laya_社区 发布时间: 20171202
...his,onRender);//当list刷新时触发 并发送Box,index this.storelist.mouseHandler = new Handler(this,onMouse);//当list被点击时触发 并发送event,index } public function onRender(cell:Box,index:int):void { //当list刷新时接收并更改单元格属性 var hero:Image = cell.getChildBy...
来源: Laya_社区 发布时间: 20180522
...llBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMouse) } onOpened(param: any) { super.onOpened(param); let imgArray = []; for (let i = 1; i < 7; i++) { imgArray.push(`ui/bg_help_0${i}.png`) } this.list_rule.array = imgArray; ...
来源: Laya_社区 发布时间: 20181112
... = x; list.y = y; list.vScrollBarSkin = ""; list.mouseHandler = new Handler(this, onSelect) list.selectEnable = true; list.selectHandler = new Handler(this, onSelect); list.renderHandler = new Handler(this, updateItem); return list; } fun...
来源: Laya_社区 发布时间: 20180724