1. ホーム
  2. Web プログラミング
  3. フレックス

AdvancedDataGrid の選択行の全データを取得する。

2022-01-03 13:03:11
AdvancedDataGrid の id で selectedItem と selectedItems のプロパティを取得する、つまり、これを使って1つ以上の行を取得し、this.id.selectedItem["@class"]で、表示されない AdvancedGrid にある部分を含む列の値を取得する~~~~~。
コピーコード コードは以下の通りです。

// for a line that is not editable
public function returnRowEdit(event:AdvancedDataGridEvent):void{
trace(this.returns.selectedItem["@class"]+" ");
if(this.returns.selectedItem["@class"]== ".ComplexField"){
event.stopImmediatePropagation();
}
}