コントローラーから値をロードしているext jsコンボボックスがあります。以下はコードです:
<script type="text/javascript">
Ext.onReady(function () {
var combo = Ext.data.Record.create([
{
name: 'Name',
type: 'string'
}
]);
var writer = new Ext.data.JsonWriter({
encode: false,
listful: true,
writeAllFields: true
});
var reader = new Ext.data.JsonReader({
totalProperty: 'total',
successProperty: 'success',
idProperty: 'Name',
root: 'data',
messageProperty: 'message' // <-- New "messageProperty" meta-data
}, combo);
var proxy = new Ext.data.HttpProxy({
api: {
read: '/ComboBox/Load'
},
headers: { 'Content-Type': 'application/json; charset=UTF-8' }
});
var store = new Ext.data.Store({
id: 'Name',
proxy: proxy,
reader: reader,
writer: writer, // <-- plug a DataWriter into the store just as you would a Reader
autoSave: false // <-- false would delay executing create, update, destroy requests until specifically told to do so with some [save] buton.
});
store.load();
Ext.data.DataProxy.addListener('exception', function (proxy, type, action, options, res) {
Ext.Msg.show({
title: 'ERROR',
msg: res.message,
icon: Ext.MessageBox.ERROR,
buttons: Ext.Msg.OK
});
});
var editor = new Ext.ux.grid.RowEditor({
saveText: 'Update'
});
var numberField = new Ext.form.ComboBox({
fieldLabel: 'Name',
hiddenName: 'Name',
store:store,
displayField: 'Name',
typeAhead: true,
mode: 'local',
triggerAction: 'all',
emptyText: 'Choose number...',
selectOnFocus: true,
pageSize: 50,
labelWidth: 50,
width: 300,
padding: '60 0 0 0',
renderTo: Ext.getBody()
});
})
私のコントローラーにはロード機能があります
public JsonResult Load()
{
List<string> my_values = new List<string>();
my_values.Add("aaaa");
my_values.Add("bbbb");
my_values.Add("cccc");
my_values.Add("dddd");
my_values.Add("eeee");
return Json(new
{
total = my_values.Count,
data = my_values,
}, JsonRequestBehavior.AllowGet);
}
しかし、私のコンボボックスは常に空で、値をロードしません.何が間違っていますか?助けてください!