1

我正在尝试将滚动添加到 Sencha Touch 字段集。当我尝试向下滚动字段集时,它在 logcat 中显示以下错误:

W/webview(1003): Miss a drag as we are waiting for WebCore's response for touch down.

对于字段集,我编写了以下代码:

{
    xtype: 'fieldset',
    docked: 'top',
    margin: '20000',
    width: 600,
    height: 200,
    items: [
        {
            xtype: 'textfield',
            id: 'consumername',
            style: 'font: DroidSans',
            label: 'ConsumerName',
            labelWidth: '30%'
        },
        {
            xtype: 'numberfield',
            id: 'Mobilenum',
            style: 'font: DroidSans',
            label: 'Mobile',
            labelWidth: '30%'
        },
        {
            xtype: 'emailfield',
            id: 'email',
            label: 'CustomerEmailid',
            labelWidth: '30%',
            placeHolder: 'email@example.com'
        },
        {
            xtype: 'textareafield',
            id: 'adressfield',
            style: 'font: DroidSans',
            label: 'Address',
            labelWidth: '30%'
        },
        {
            xtype: 'textfield',
            id: 'areafield',
            style: 'font: DroidSans',
            label: 'Area/Location',
            labelWidth: '30%'
        },
        {
            xtype: 'selectfield',
            label: 'City',
            labelWidth: '30%',
            options: [
                {
                    text: 'Bangalore',
                    value: 'first'
                },
                {
                    text: 'Delhi',
                    value: 'second'
                },
                {
                    text: 'Mumbai',
                    value: 'third'
                }
            ]
        },
        {
            xtype: 'numberfield',
            id: 'pinfield',
            style: 'font: DroidSans',
            label: 'Pincode*',
            labelWidth: '30%'
        },

    ]
}

我正在使用 2.2 版本的 Android Olive Pad 平板电脑进行测试。我正在使用 Sencha Touch 2 和 PhoneGap 来构建应用程序。

4

0 回答 0