我使用從YUI 2.8.2數據表和它的部件如下編輯數據源(YAHOO.example.Data.response):檢索從YUI的數據表更新數據源編輯後
this.bpDataSource = new YAHOO.util.DataSource(YAHOO.example.Data.response);
response_datasource = this.bpDataSource;
this.bpDataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
this.bpDataSource.responseSchema = {
resultsList: "item_evaluacion",
fields: [ ... ]
};
this.standardSelectDataTable = new YAHOO.widget.ScrollingDataTable("div_item",
bpColumnas, this.bpDataSource, {height:"9em"});
我想從這個數據表中檢索編輯後的數據並進行處理。我嘗試了一個指向this.bpDataSource的變量,但這個變量只包含原始數據源,而沒有用戶所做的更改。 如何檢索我的數據源的更新版本?