我正在使用this example来学习如何使用extjs5,即时创建一个简单的网格面板,但对我来说不起作用(在示例中使用renderTo: Ext.getBody()
,我将此部分更改为renderTo: 'example-grid'
显示在<div id="example-grid">
内,但div显示为空。这是代码:
<head>
<html:base />
<title><bean:write name="UserFormBean" property="Nombre"/></title>
<link rel="stylesheet" href="../../../../config/ext-theme-classic/build/resources/ext-theme-classic-all.css" type="text/css" />
<link rel="stylesheet" href="../../../../config/ext-theme-classic/build/resources/ext-theme-classic-all-debug.css" type="text/css" />
<script src="../../../../config/js/ExtLocale/<%=request.getSession(true).getAttribute( "langSesion")%>"></script>
<script type="text/javascript" src="../../../../config/ext-theme-classic/build/ext-theme-classic.js"></script>
<script type="text/javascript" src="../../../../config/ext-theme-classic/build/ext-theme-classic-debug.js"></script>
<script type="text/javascript" src="../../../../config/js/ext-all-5.0.js"></script>
<script type="text/javascript" src="../../../../config/js/ext-all-debug-5.0.js"></script>
<script type="text/javascript">
Ext.onReady(function() {
//MODEL
Ext.define('User', {
extend: 'Ext.data.Model',
fields: [ 'name', 'email', 'phone' ]
});
// DATASTORE
var userStore = Ext.create('Ext.data.Store', {
model: 'User',
data: [
{ name: 'Lisa', email: 'lisa@simpsons.com', phone: '555-111-1224' },
{ name: 'Bart', email: 'bart@simpsons.com', phone: '555-222-1234' },
{ name: 'Homer', email: 'homer@simpsons.com', phone: '555-222-1244' },
{ name: 'Marge', email: 'marge@simpsons.com', phone: '555-222-1254' }
]
});
//GRIDPANEL
Ext.create('Ext.grid.Panel', {
renderTo: 'example-grid',
store: userStore,
width: 400,
height: 200,
title: 'Application Users',
columns: [
{
text: 'Name',
width: 100,
sortable: false,
hideable: false,
dataIndex: 'name'
},
{
text: 'Email Address',
width: 150,
dataIndex: 'email',
hidden: true
},
{
text: 'Phone Number',
flex: 1,
dataIndex: 'phone'
}
]
});
}
</script>
</head>
<body>
<div id="example-grid"></div>
答案 0 :(得分:1)
如果您确实需要使用onReady
方法(不推荐),则包含必要的Ext文件,原始代码应该可以正常工作。
您可以在此处找到可行的单文件方法:Single File ExtJS 5 Application w/o Sencha Cmd。它略有不同,因为它使用Ext.application()
而不是onReady()
。不管怎样,都不推荐这两种方法。
建议的方法是使用Sencha Cmd
初始生成,在开发期间维护,最后构建Ext应用程序。
答案 1 :(得分:0)
这就是我在项目中完成的工作:
var grid = Ext.create('Ext.grid.Panel', {..})
var pageDivs = Ext.select('div .example-grid');
//get the .Page DIV should just be one.
var pageDiv = pageDivs.elements[0];
grid.render(pageDiv);
即。使用渲染而不是 renderTo 。