大约有 11 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0028 秒)
list的selectHandler属性连续点击同一个item不能重复接收事件 使用的是引擎示例中的代码:https://layaair.ldc.layabox.com/demo/?category=2d&group=UI&name=List list.selectEnable = true; list.selectHandler = new Handler(this, onSelect); ...
来源: Laya_社区 发布时间: 20180507
list的selectHandler的选中状态 list的selectHandler可以手动更改它的selectIndex或者清空它的选中状态吗??我两个tab用的同一个list,切换的时候selectIndex一直保持不变,除了改成mouseHandler外,还有什么解决方法? 2016-12-27 添加评论 免费...
来源: Laya_社区 发布时间: 20161227
ui list 里面的元素不能点击两次 你好,咱们list list.selectHandler = new Handler(this, onSelect); 只能获取一次点击事件么? 如何修改才能让list里面的元素 可以被连续点击? 附件 : --> 2016-12-02 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...
来源: Laya_社区 发布时间: 20161202
... 提交 1 个回复 cuixueying 赞同来自: Y_Yao 直接为你的tab添加selectHandler或者mouseHandler即可! 2017-05-16 1 3 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新回复 发起人 Y_Yao 相关问题 Dialog:屏蔽点...
来源: Laya_社区 发布时间: 20170516
...g 赞同来自: 好友列表建议你用list来做,list有mouseHandler和selectHandler,可以直接回调你点击每一条Item的信息! 2017-07-03 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 18336093936 相关问题 Dialog:...
来源: Laya_社区 发布时间: 20170703
...值 this.sList.selectEnable = true;//列表项是否可选 // this.sList.selectHandler = Laya.Handler.create(this,this.onSelect,null,false); this.sList.mouseHandler = new Laya.Handler(this,this.onMouse);//鼠标事件响应 } Laya.class(ServerListView,"ServerListView",_super); var _proto_ = ServerLi...
来源: Laya_社区 发布时间: 20170805
...new Handler(this, onSelect) list.selectEnable = true; list.selectHandler = new Handler(this, onSelect); list.renderHandler = new Handler(this, updateItem); return list; } function updateItem(cell, index) { console.log(index); // console.log(cell.da...
来源: Laya_社区 发布时间: 20180724
...同来自: 点击问题解决了,换mouseHandler就可以了,之前是selectHandler 2017-04-19 0 0 分享 微博 QZONE 微信 cuixueying 赞同来自: 重影的问题可能是数据渲染出问题了,能否提供下你的Demo,我们查下问题! 2017-04-19 0 0 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20170419
...4个render为item0,1,2,3,往下拖第五个item也叫item0, 通过list.selectHandler = new Laya.Handler(this, this._OnSelect); function _OnSelect(){ //选中的render上加个选中框, var selection = this.visualizeList.selection; selection.addChild(this.m_CenterDiv.imgSelect)...
来源: Laya_社区 发布时间: 20171101
...: 3 人 cuixueying • 2017-01-05 22:10 你可以在renderHandler下或者selectHandler下,通过返回值index索引,去为你的button添加点击事件即可,不需要遍历。 weiyongwill • 2017-01-06 10:56 多谢指点。list.getItem(xxx).getChildByName()无效,获取不到,我发...
来源: Laya_社区 发布时间: 20170105