10
如何從商店獲得價值ID?ExtJs - 如何通過id從商店中獲取價值?
店等領域
fields: [
{name: "id", type: 'int'},
{name: "name", type: 'String'},...
我需要得到ID - 名值。
我試試這樣:
var rec = Ext.StoreMgr.lookup("MyStore").getById(id);
alert(rec.data.name);
我究竟做錯了什麼?
非常感謝你:) – Andrei