我有个人资料主页视图(Home2)。在此视图中,想要显示顶部停靠的标题栏,用户个人资料信息和用户的帖子。
Ext.define('FreescribbleApp.view.Home2', {
extend: 'Ext.Panel',
xtype: 'homepage2',
config: {
title: 'Home',
iconCls: 'home',
styleHtmlContent: true,
scrollable: true,
items:[
{
xtype: 'titlebarview'
},
{
xtype: 'userinfoview',
itemId: 'userInfoWrapper',
height: 150
},
{
itemId: 'homeStage',
autoScroll: true
}
]
}
});
我还有一个DataView:
Ext.define('FreescribbleApp.view.PostList', {
extend: 'Ext.dataview.DataView',
xtype: 'postlist',
config: {
scrollable: false,
defaultType: 'postitem',
useComponents: true
}
});
列出了DataItems:
Ext.define('FreescribbleApp.view.PostItem', {
extend: 'Ext.dataview.component.DataItem',
xtype: 'postitem',
requires: ['Ext.field.Text'],
config: {
style: 'background-color: #f00',
height: 100,
styleHtmlContent: false,
authorName: {
height: 30,
style: 'background-color: #0f0'
},
dataMap: {
getAuthorName: {
setHtml: 'userName'
}
},
},
applyAuthorName: function(config) {
return Ext.factory(config, Ext.Component, this.getAuthorName());
},
updateAuthorName: function(newAuthorName, oldAuthorName) {
if (newAuthorName) {
this.add(newAuthorName);
}
if (oldAuthorName) {
this.remove(oldAuthorName);
}
}
});
在我的HomeController中我创建了一个PostStore,用一些帖子填充它并添加到DataView。之后,我将DataView添加到我的Home2-View Element HomeStage:
var postStore = Ext.create('FreescribbleApp.store.PostStore', {
params: {
user: localStorage.getItem('userId'),
token: localStorage.getItem('token'),
target: localStorage.getItem('userName')
}
});
postStore.load();
postStore.on('load', function(){
var currentView = Ext.create('FreescribbleApp.view.PostList');
currentView.setStore(postStore);
homeStage.add(currentView);
});
在设置DataView的高度之前,我看不到任何项目。这是一个常见的问题,在我的情况下,我无法将我的HomeStage设置为“适合”。因为它只是Home2的一部分,所以项目userinfo应该与帖子一起滚动。那么如何动态设置DataView的大小呢?
我也在我的Sencha debuger中看到Chrome,我的DataView-List和我的DataItems之间是一个容器,里面的所有项目都有正确的高度。我可以获得这个容器的大小并为我的DataView设置我吗?它会起作用并且是一种好的做法吗?
答案 0 :(得分:0)
对不起,我只需要在我的DataView中设置scrollable:null,而不是false!