我有一個很長的表單,所以用戶需要向下滾動表單。當使用鼠標滾動時,表單會暫時向下滾動,但一旦釋放鼠標,表單將再次向上滾動。使用選項卡時它工作正常。 更新 - 我也試過iPhone & Android設備,同樣的問題仍然存在。Sencha觸摸表單面板,不滾動鼠標
這是我的形式面板:
Ext.define('MyApp.view.Register', {
extend: 'Ext.form.Panel',
xtype: 'registerpage',
id: 'createPatientForm',
config: {
title: 'Registration',
iconCls: 'star',
scroll: 'vertical',
pinHeaders: true,
styleHtmlContent: true,
autoScroll: true,
layout:{
type: 'vbox'
},
items: [{
xtype: 'fieldset',
title: 'Registration',
align: 'center',
centered: true,
items: [{
xtype: 'textfield',
label: 'First Name',
name: 'firstName'
},
{
xtype: 'textfield',
label: 'Last Name',
name: 'lastName'
}
//many more items in the form.........
]
}]
}]
}
});
Sencha **觸摸**不應該被使用鼠標的設備... – 2012-03-30 17:02:03
我想,因爲鼠標不起作用,當使用觸摸界面進行滾動時會出現同樣的問題。 – Gaurav 2012-03-30 17:29:31
您可以創建一個JSFiddle嗎?這會讓其他人試圖調試這個問題變得更容易。如果您指定了您正在使用的ST2版本以及您正在測試的平臺,瀏覽器等,也可能會有所幫助。謝謝。 – Jay 2012-04-01 06:28:47