我有以下煎茶觸摸頁面的要求:煎茶觸摸VBOX
- 一滴一些選項下
- 由用戶發佈(長度可以變化大的時候)
- 文本區域的一個問題顯示得到的答案
- 兩個按鈕提交和忽略
我使用VBOX佈局。現在的問題是,我希望頁面可以完全滾動而不是部分數據視圖上的滾動等。
我該如何實現它。我對不同的屏幕有類似的要求。
下面是代碼:
Ext.define('HCMDoctor.view.PFQuestion', {
extend : 'Ext.form.Panel',
xtype : 'PFQuestion',
id : 'pfView',
config : {
layout : {
type : 'vbox',
align : 'stretch'
},
flex : 1,
scrollable : true,
items : [{
xtype : 'container',
html : 'Public Forum Question'
}, {
xtype : 'selectfield',
store : 'CommunityWiseQuestions',
name : 'pfCommId',
id : 'pfCommId',
valueField : 'communityId',
displayField : 'displayFull'
}, {
store : 'PFQuestion',
xtype : 'dataview',
flex : 1,
id : 'pfQuestionHolder',
itemTpl : ['{discussionTitle}<br>{description}',
'<br>Posted in {postedInCommunityName}']
}, {
xtype : 'hiddenfield',
id : 'pfQuestionId',
name : 'pfQuestionId'
}, {
xtype : 'textareafield',
id : 'pfAnswer',
name : 'pfAnswer'
}, {
store : 'PFQuestion',
xtype : 'button',
text : 'Ignore',
id : 'ignorePFQuestion'
}, {
store : 'PFQuestion',
xtype : 'button',
text : 'Submit',
id : 'submitPFQuestion'
}
]
}
});
感謝
爲什麼'pfQuestionHolder'是'dataview'?它很可能是一個''Panel'' data''''tpl''屬性來實現你想要的。 – ThinkFloyd
當你說數據你的意思是硬編碼?我需要來自服務器的數據...如果你能建議我有一個存儲或應用商店數據面板的方法,我完全沒問題。 –