Extjs 4.1 - 如何在网格面板中显示 html 数据
Posted
技术标签:
【中文标题】Extjs 4.1 - 如何在网格面板中显示 html 数据【英文标题】:Extjs 4.1 - How to display html data within gridpanel 【发布时间】:2013-08-28 01:46:08 【问题描述】:我必须显示复杂的数据(我在表格上显示)并且我使用 xtemplate(我认为这是最好的方式)来显示它们
Ext.define('My.Example',
extend: 'Ext.Panel'
, tbar:[
text:'my button'
]
,tpl: 'data'
);
但我需要在表格之后嵌入一个网格
|button|----|
|---table---|
|-----------|
|-----------|
| |
|---grid----|
|-----------|
我该怎么办谢谢
【问题讨论】:
【参考方案1】:使用盒子布局:
Ext.onReady(function()
new Ext.panel.Panel(
width: 400,
height: 400,
renderTo: document.body,
layout:
type: 'vbox',
align: 'stretch'
,
tbar: [
text: 'Button'
],
items: [
flex: 1,
html: 'Top data'
,
flex: 1,
xtype: 'gridpanel',
store:
fields: ['name'],
data: [
name: 'Item 1'
]
,
columns: [
flex: 1,
text: 'Name',
dataIndex: 'name'
]
]
);
);
【讨论】:
我尝试改变 html 像:panel.items.items[0].value='new data';但不工作?以上是关于Extjs 4.1 - 如何在网格面板中显示 html 数据的主要内容,如果未能解决你的问题,请参考以下文章