2

現在、SenchaTouch2を試しています。スクロールをテストするために画面に表示できるよりも多くのアイテムを含む単純なjson-storeを作成しましたが、スクロールしようとするたびに次のエラーが発生します。

Uncaught TypeError: Cannot call method 'getCount' of null

私は何が悪いのかを見つけようとしましたが、まだ解決策を見つけることができませんでした。多分誰でも助けることができますか?これが私のサンプルファイルです:

host.json:

{
"hosts": [
    {
        "host_name": "host 1",
        "status": "pending"
    },
    {
        "host_name": "host 2",
        "status": "normal"
    },
    {
        "host_name": "host 3",
        "status": "critical"
    }

            ...

]
}

私の店:

Ext.define('myapp.store.MyStore', {
extend: 'Ext.data.Store',

config: {
    storeId: 'mystore',
    model: 'myapp.model.MyModel',

    proxy: {
        type: 'ajax',
        url: 'host.json',
        reader: {
            type: 'json',
            rootProperty: 'hosts'
        }
    },
    autoLoad: true
}

});

リストビュー:

  Ext.define('myapp.view.MyListView', {
extend: 'Ext.dataview.List',
alias: 'widget.mylistview',



config: {
    items: {
        xtype: 'list',
        store: 'mystore',
        itemTpl: '<div class="service_status_{status}">{host_name}</div>'
    }
}
});

そして、リストビューが呼び出されるビュー:

Ext.define('myapp.view.Main', {
extend: 'Ext.Container',

config: {
    layout: {
        type: 'vbox',
        aligh: 'stretch'
    },

    items: [
        {
            xtype: 'mytoolbar',
            docked: 'top',
            height: 50
        },
        {
            xtype: 'mylistview',
            flex: 1
        }
    ]
}
});
4

1 に答える 1