ユーザーがデータベースを更新した後、更新されたデータを反映するようにデータグリッドを更新しようとしています。それは可能ですか?Flash Builder:DataGridデータをリフレッシュするにはどうすればよいですか?
スクリプトの助けを
protected function updataHandler(event:MouseEvent):void
{
updateJobsResult.token = Service.updateJobs(updateJobData);
//The database will be updated after users click the update button
//I want to update datagrid dataprovider to show the updated data.
}
<s:datagrid dataprovider="jobdata">
//jobdata comes from from database query
..................
..................
</datagrid>
<s:form>
//when user selects the row in datagrid, the cell values will
//pop in this form and user can update the form
.................
.................
</form>
<s:button click="updateHandler">
ありがとう:私は、次のコードを持っています。