最近在做 Sencha 的一个项目,需要用到 Ext.List 来列出所需商品及相关信息,平时我们使用 Ext.List 都是使用  fullscreen:true  来设置 List 全屏显示,

但是现在需求是 Panel 中嵌套 一个 List 效果如下图所示:

显然这时候是不能用  fullscreen:true 的,所以我们要给它设置显示的高度,通过 setHeight() 的方法,

如果没有设置高度是不会显示的,这里要注意一下。

代码实现如下:

<span style="font-size:14px;">Ext.define('GoodInfo',{
extend: 'Ext.data.Model',
config: {
fields: ['title', 'fu_title', 'price', 'img_url']
}
});</span>
<span style="font-size:14px;">
var goodStore = Ext.create('Ext.data.Store',{
model: 'GoodInfo',
autoLoad: true,
proxy: {
type: 'ajax',
url: './json/goods.json',
reader: {
type: 'json',
rootProperty: 'goods'
}
}
});</span>
<span style="font-size:14px;">
var goodTemplate = new Ext.XTemplate(
'<tpl for=".">',
'<div class="Book-item">',
'<div class="Book_img"><img src="{img_url}"/></div>',
'<div class="Book_info">',
'<h2>{title}</h2><br><h3>{fu_title}</h3><br><h2>{price}</h2>',
'<p>{description:ellipsis(40)}</p>',
'</div>',
'</div>',
'</tpl>'
);</span>
<span style="font-size:14px;">//这个是固定高度的 List 实现
var myList = Ext.create('Ext.List',{
height: 200, //这个高度设置很重要,没有高度是不会显示的
store: goodStore,
itemTpl: goodTemplate
}); </span>
<span style="font-size:14px;">//这个是高度自适应的 List 实现
Ext.define('MyList', {
extend: 'Ext.List',
xtype: 'commentList',
cls: 'myList',
config: {
itemHeight: 120,
scrollable: {
disabled: true
},
store: goodStore,
itemTpl: goodTemplate
},
refresh: function() {
var count = this.getStore().getCount();
if(count){
this.setHeight(this.getItemHeight()* count);
}
this.callParent(arguments);
}
}); </span>
<span style="font-size:14px;">

Ext.define('Ext.ux.HomePanel', {
extend : 'Ext.form.Panel', // 继承 Ext.form.Panel 实现面板可以滚动,Ext.Panel 默认不可以
xtype : ['homepanel'],
requires: ['MyList'],
config : {
layout: {
type: 'vbox'
},
items : [
<span style="white-space:pre"> </span>{
<span style="white-space:pre"> </span>xtype: 'commentList' //把 List 添加到 Panel 上
<span style="white-space:pre"> </span>}
<span style="white-space:pre"> </span>]
<span style="white-space:pre"> </span>}
}); </span>

相关文章分享:

http://www.ithao123.cn/content-8144041.html

http://blog.sina.com.cn/s/blog_43b191a901017lmv.html

http://www.cnblogs.com/kenshincui/archive/2011/01/02/1924035.html

关注公众号,分享干货,讨论技术

Sencha touch中Ext.List的使用及高度自适应的更多相关文章

  1. 【翻译】在Ext JS和Sencha Touch中创建自己定义布局

    原文:Creating Custom Layouts in Ext JS and Sencha Touch 布局系统是Sencha框架中最强大和最独特的一部分.布局会处理应用程序中每个组件的大小和位置 ...

  2. 【翻译】在Ext JS和Sencha Touch中创建自定义布局

    原文:Creating Custom Layouts in Ext JS and Sencha Touch 布局系统是Sencha框架中最强大和最独特的一部分.布局会处理应用程序中每个组件的大小和位置 ...

  3. 【翻译】在Sencha Touch中创建离线/在线代理

    原文:Creating an Online/Offline proxy in Sencha Touch 概述 在Sencha Touch中,一个常见的需求就是,当设备在没有连接互联网的时候,应用程序必 ...

  4. Sencha Touch 之 Ext.ComponentManager.get方法使用

    HTML代码: <!doctype html> <html> <head> <meta charset="utf-8"> <t ...

  5. Sencha Touch 之 Ext.fly方法的使用

    Ext.fly方法是Ext.js 4中的flyweight技术,该技术在浏览器中为使用Ext.fly方法的元素节点开辟一块内存,下一次使用Ext.fly方法的元素节点将占据同一块内存,即覆盖前一次的元 ...

  6. Sencha Touch中 xclass和xtype区别

    1.xclass 就是 Ext.create(xclass) 和 xtype一样的性质,不一定非要是自己创建的. 2.xtype是xclass的简称. 3.使用xtype前,你要new的对象,先要re ...

  7. sencha touch中按钮的ui配置选项值及使用效果

  8. 关于sencha touch中给文本添加焦点无效的解决方案

    目前的解决方案是给你的执行代码加上一个timeout延迟100ms+ setTimeout(function(){ SoftKeyboard.isShowing(function(isShowing) ...

  9. 再探 Ext JS 6 (sencha touch/ext升级版) 变化篇 (编译命令、滚动条、控制层、模型层、路由)

    从sencha touch 2.4.2升级到ext js 6,cmd版本升级到6.0之后发生了很多变化 首先从cmd说起,cmd 6 中sencha app build package不能使用了,se ...

随机推荐

  1. Android Studio modify language level to Java 8

    If you need use lambda, should modify language level File -> Project Structure -> app -> Pr ...

  2. Python3全栈学习目录

    http://www.cnblogs.com/wupeiqi/articles/4938499.html 文辉整理: http://blog.51cto.com/9272317/1869914

  3. 对mysqlbinlog日志进行操作的总结包括 启用,过期自动删除

    操作命令: show binlog events in 'binlog.000016' limit 10; reset master 删除所有的二进制日志 flush logs  产生一个新的binl ...

  4. 做小Leader的心得体会

    只是自己的工作心得体会,代码属于也不够专业,大家不喜勿喷. 8月份来到这家新公司,没过一个月给派了个活:带着两个小弟给某银行开发一个小工具.功能很简单,就是用Java做一个windows上的C端工具, ...

  5. Python升级3.6 强力Django+Xadmin打造在线教育平台

    第 1 章 课程介绍 1-1 项目演示和课程介绍: 第 2 章 Windows下搭建开发环境 2-1 Pycharm.Navicat和Python解释器的安装: Pycharmhttp://www.j ...

  6. 当我们在安装tensorflow时,我们在安装什么?- Intro to TF, Virtualenv, Docker, CUDA, cuDNN, NCCL, Bazel

    (Mainly quoted from its official website) Summary: 1. TensorFlow™ is an open source software library ...

  7. debian8.2安装kubernetes

    master上通过kubeadm安装Kubernetes 添加国内阿里源后安装kubeadm: deb https://mirrors.aliyun.com/kubernetes/apt/ kuber ...

  8. redis的认识

    <?php /* Redis优势: 性能极高 – Redis能读的速度是110000次/s,写的速度是81000次/s . 丰富的数据类型 – Redis支持二进制案例的 String, Lis ...

  9. 文件特殊权限:SUID,SGID,SBIT

    我们之前认识的文件的权限仅局限于r,w,x,但如果我们执行命令“ll /tmp; ll /usr/bin/passwd”,会出现除了r,w,x之外的其他字母: 即出现了特殊权限(s跟t). [SetU ...

  10. java课程设计 学生管理系统

    学生成绩管理系统 可实现功能 学生管理系统 查询学生信息:姓名.学号.性别.出生年月日.(学号自动生成且唯一) 查询学生成绩:每个人都有数学.Java与体育与选修课 查询学生课程 进行公选课选课 教师 ...