0

ストアをリッスンするコンボボックスがあります

        {
                                id: 'filterOrderStatus',
                                xtype: 'combobox',
                                fieldLabel: Translation.MailboxListStatus,
                                store: 'DocumentStatuses',
                                displayField: 'name',
                                valueField: 'id',
                                itemId: 'filterOrderStatus',
//                                flex: 1,
                                height: 23,
                                labelWidth: 45,
                                width: 130,
                                cls: 'filterInputField',
                                listConfig: {
                                    cls: 'comboboxlist-sizefit'
                                }

ストアは、値を取得する単純な ajax ストアです。彼が取得した値を別の言語に変換する必要があります。ここに店があります:

Ext.define('xxx.xx.xxx', {
    extend: 'Ext.data.Store',
    requires: 'xxx.xxx.xx',
    model: 'xxx.xxx.xxxx',

    autoLoad: true,

    proxy: {
        type: 'ajax',
        api: {
            read: ConfigurationData.url + 'xxx.php?xx=xx&xx=xxx'
        },
        reader: {
            type: 'json',
            root: 'results',
            successProperty: 'success'
        }
    }
});
4

1 に答える 1

1

モデルでは、変換されたレコードを次のように直接返すことができます

{
  name : 'name',
  convert : function( value, record ) {
               //Your logic to convert the old name(value) into new name.
               return name;
   }   
   type: 'string'
},
于 2013-09-26T13:59:39.810 に答える