大约有 17 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0036 秒)
List的selectHandler 点击同一个item只能触发一次回调 点了一个item A回调后,再点item A就不会回调. 点另一个irem B后再点item A,,item A才会回调. handler的第4个参数once设的是false 附件 : --> 2019-03-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20190305
自定义Laya.Tab的item,tab注册的selectHandler无法触发到回调函数 我需要自定义tab里面的item项,在编辑器自定义了tabItem.scene。 在另一个View里面创建3个这个tabItem对象,命名item0,item1,item2,选中转换为容器Tab命名为myTab。 但是在该View...
来源: Laya_社区 发布时间: 20190514
关于下拉列表的选择触发 this.small_map.selectHandler = new Laya.Handler(this, onSelect_small); this.big_map.selectHandler = new Laya.Handler(this, onSelect_big); function onSelect_small(e) { Laya.big_switch = 0 Laya.maptype = "small" this.now_map.text = "当前地图:" + this.small_map....
来源: Laya_社区 发布时间: 20180719
list的selectHandler的选中状态 list的selectHandler可以手动更改它的selectIndex或者清空它的选中状态吗??我两个tab用的同一个list,切换的时候selectIndex一直保持不变,除了改成mouseHandler外,还有什么解决方法? 2016-12-27 添加评论 免费...
来源: Laya_社区 发布时间: 20161227
关于下拉列表的选择触发 this.small_map.selectHandler = new Laya.Handler(this, onSelect_small); this.big_map.selectHandler = new Laya.Handler(this, onSelect_big); function onSelect_small(e) { Laya.big_switch = 0 Laya.maptype = "small" this.now_map.text = "当前地图:" + this.small_map....
来源: Laya_社区 发布时间: 20180719
在微信小游戏中使用list,兼听不到mouseHandler跟selectHandler。 需求:需要对list中的每个cell设置监听 问题:在微信小游戏中使用list,监听不到mouseHandler跟selectHandler,但是renderHandler的回调是正常的。1、我对list设置了on去监听mouse...
来源: Laya_社区 发布时间: 20180731
...,真是服LAYA,哎,搞了我一晚上,真心不行 this.small_map.selectHandler = new Laya.Handler(this, onSelect_small); this.big_map.selectHandler = new Laya.Handler(this, onSelect_big); function onSelect_small(e) { Laya.big_switch = 0 Laya.maptype = "small" this.now_map.text = "当前地...
来源: Laya_社区 发布时间: 20180719
...行的处理器,(默认返回参数: 项索引(index:number))。*/ selectHandler: Handler; /**单元格渲染处理器(默认返回参数cell:Box,index:number)。*/ renderHandler: Handler; /**单元格鼠标事件处理器(默认返回参数e:Event,index:number)。*/ mouseHandler: Handler; /...
来源: Laya_社区 发布时间: 20180801
...源加载用Handler.create()? 我测试了一下,如果类似于 tab.selectHandler = Laya.Handler.create(tab, this.onSelect); 这种的,如果用create则只能触发一下,如果用new Handler则正常触发? 2017-08-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...
来源: Laya_社区 发布时间: 20170818
...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