大约有 305 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0053 秒)
... export default class RuleDialog extends ui.scene.RuleDialogUI { private m_index: number = -1; private m_downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler...
来源: Laya_社区 发布时间: 20171202
...! //此Demo纯代码实现 根据官网UI示例改编 private index_num =99999; // 定义当前点击索引 默认值 最好比List 数据长度要大 private listArr =[]; //包含List 数组 private arr = [0,1,2,3]; //List 的数据源(此代码中arr只起到渲染数量作用) /**...
来源: Laya_社区 发布时间: 20190522
... export default class RuleDialog extends ui.scene.RuleDialogUI { private m_index: number = -1; private m_downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler...
来源: Laya_社区 发布时间: 20181112
... export default class RuleDialog extends ui.scene.RuleDialogUI { private m_index: number = -1; private m_downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler...
来源: Laya_社区 发布时间: 20180724
...e_list.renderHandler = new Handler(this, onRender); function onRender(item,index){ var dataIndex = data[index]; var label = item.getChildByName('lab'); if(dataIndex.type == false){ label.bgColor = '#f3d9b4'; }else { label.bgColor = 'red'; } } function onSelect(ev,index){ data[index].type = data[inde...
来源: Laya_社区 发布时间: 20170803
...uper){ function ServerListView(){ ServerListView.super(this); this.selectedIndex = -1; var data = ; //设置服务器列表项信息 for(var i=0;i<100;i++){ data = {select:{label:"服务器"+(i+1),selected:false}, flag:{text:(i==0)?"(推荐)":""}}; } this.sList.dataSource = data;//批量赋值 th...
来源: Laya_社区 发布时间: 20170805
... export default class RuleDialog extends ui.scene.RuleDialogUI { private m_index: number = -1; private m_downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler...
来源: Laya_社区 发布时间: 20170215
...ge.addChild(this.mainUI); }; GameMain.prototype.onRender = function (cell, index) { if(index <0 || index >= dataSource.length) return; var data = dataSource[index]; var chBox = cell.getChildByName('chBox'); var img = cell.getChildByName('img'); if(!data.type) { chBox.skin = "../laya/assets/ui/...
来源: Laya_社区 发布时间: 20170207
...Handler=new Handler(this,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:Im...
来源: Laya_社区 发布时间: 20180522
...及时渲染 refreshCard(0,[xxxxxx]); public function refreshCard(index:int,cardArr:Array):void{ var cardList:List = _homeSeceneView["myCard_"+index]; if(cardList){ if(!cardList.visible){ ...
来源: Laya_社区 发布时间: 20170310