代码如下:
{
/// <reference path="../../ext/ext-all.js" />
Ext.define('User', {
extend: 'Ext.data.Model',
fields: ["name", "title"],
hasMany: [{ model: 'User', name: 'childrens' }]
});
var myStore = Ext.create('Ext.data.Store', {
model: 'User',
proxy: {
type: 'ajax',
url: 'user.txt',
reader: {
type: 'json',
root: 'users'
}
},
autoLoad: true
});
Ext.create('Ext.view.View', {
width:200,
store: myStore,
tpl: ['<div>',
'<tpl for=".">',
'<div>',
'<div class="nrm_menu_banner">{name}</div>',
'<tpl for="childrens">',
'<div class="nrm_menu_content">{name}</div>',
'</tpl>',
'</div>',
'</tpl>',
'</div>'
],
itemSelector: 'div.nrm_menu_content',
overItemCls: 'hover',
trackOver: true,
renderTo: Ext.getBody()
});
}
现在遇到的问题是,如果itemSelector设置为 'div.nrm_menu_content',则报
Uncaught TypeError: Cannot read property 'internalId' of undefined错误,why???
相关解决方案
- 【飞天奔月出品】eclipse技能,解决打开搜索(seach view)匹配内容,编辑器会覆盖
- Gird View 行的单元格,不能被双击所批改
- Gird View 行的单元格,不能被双击所修改,该如何解决
- 哪位高手能帮忙告诉小弟我borland 2006/2007 的 model view 设计的资料
- mvc3.0 实业 controller view 关系
- 急 MVC 模式下 View
- Mvc3.0 reutrn View() 有关问题
- 按照grid view 中是否有数据来判断解决思路
- asp.net tree view 空件在那下载?解决思路
- Details View 中 TemplateField <InsertTemplate>从变量取默认值后不允许用更改,该如何处理
- create view WITH CHECK OPTION的有关问题
- PowerDesigner12 逆向工程不能够取得视图(view)的脚
- CLEAR CASE 不能CREATE VIEW,该如何解决
- CLEAR CASE 不能CREATE VIEW,该怎么处理
- view 在Animation后设置隐藏失效有关问题
- Backbone札记之一(View)
- http://cdn.ac.nbutoj.com/Problem/view.xhtml?id=1198&& I can do it
- ORA-00942: table or view does not exist,该怎么解决
- Django 1.5.4 课题二 urls 和 view 提高
- Circular view path 错误
- Backbone札记之一(View)
- No appropriate node to show Web View for "/WebModule/"but the web ser
- Away3D基础 二 - 视图和场景(The View and the Scene)
- Ext.view.View使用TPL有关问题
- knockoutjs - 运用Model-View-ViewModel (MVVM) 模式简化动态Javascript UI
- 施用jQuery图表插件Sparklines来开发一个实用的网站PV(page view)实时监控应用
- iPhone运用:JSF2 Tag Reference,offline view by iPhone
- 系出名门Android(七) - 控件(View)之ZoomControls, Include, VideoView, WebView, RatingBar
- 关于Extjs4.0 MVC架构 View,该怎么处理
- http://localhost:8080/mykj/view.do?model.id=123 不施行对应的test方法