FLEX ArrayCollection がフィルタリングされたデータを削除する問題が解決されました。
2022-01-19 02:23:02
I. 問題です。
ArrayCollectionにフィルタを追加したところ、部門データが表示されなくなり、未表示のデータを削除する際にremoveItemAt()を呼び出しても削除されないのですが。
II. 理由
public function removeItemAt(index:int):Object
{
if (index < 0 || index >= length)
{
var message:String = resourceManager.getString(
"collections", "outOfBounds", [ index ]);
throw new RangeError(message);
}
var listIndex:int = index;
if (localIndex)
{
var oldItem:Object = localIndex[index];
listIndex = list.getItemIndex(oldItem);
}
return list.removeItemAt(listIndex);
}
なぜなら、var oldItem:Object = localIndex[index]; localIndexはフィルタリングされていないデータだからです。
III. 解決方法
ArrayCollectionは、リストのプロパティを持ちます。
public function get list():IList
{
return _list;
}
リストが生データです。
そこで、フィルタが追加されたArrayCollection上でフィルタリングされたデータを削除したい場合、リストの助けが必要です。実装コードは以下の通りです。
public function findEmployeeInSource(id:int):OrgEmployee {
var obj:OrgEmployee = null;
var list:IList = employees.list;
var len:int = list.length;
for (var index:int = 0; index < len; index++) {
obj = list.getItemAt(index) as OrgEmployee;
if (obj.id == id) {
return obj;
}
}
return null;
}
public function deleteEmployee(id:int):void {
var obj:OrgEmployee = findEmployeeInSource(id);
if (obj ! = null) {
var index:int = employees.list.getItemIndex(obj);
employees.list.removeItemAt(index);
}
}
または関数。
public function deleteEmployee(id:int):void {
var obj:OrgEmployee = null;
var list:IList = employees.list;
var len:int = list.length;
for (var index:int = 0; index < len; index++) {
obj = list.getItemAt(index) as OrgEmployee;
if (obj.id == id) {
list.removeItemAt(index);
return;
}
}
}
ArrayCollectionにフィルタを追加したところ、部門データが表示されなくなり、未表示のデータを削除する際にremoveItemAt()を呼び出しても削除されないのですが。
II. 理由
コピーコード
コードは以下の通りです。
public function removeItemAt(index:int):Object
{
if (index < 0 || index >= length)
{
var message:String = resourceManager.getString(
"collections", "outOfBounds", [ index ]);
throw new RangeError(message);
}
var listIndex:int = index;
if (localIndex)
{
var oldItem:Object = localIndex[index];
listIndex = list.getItemIndex(oldItem);
}
return list.removeItemAt(listIndex);
}
なぜなら、var oldItem:Object = localIndex[index]; localIndexはフィルタリングされていないデータだからです。
III. 解決方法
ArrayCollectionは、リストのプロパティを持ちます。
コピーコード
コードは以下の通りです。
public function get list():IList
{
return _list;
}
リストが生データです。
そこで、フィルタが追加されたArrayCollection上でフィルタリングされたデータを削除したい場合、リストの助けが必要です。実装コードは以下の通りです。
コピーコード
コードは以下の通りです。
public function findEmployeeInSource(id:int):OrgEmployee {
var obj:OrgEmployee = null;
var list:IList = employees.list;
var len:int = list.length;
for (var index:int = 0; index < len; index++) {
obj = list.getItemAt(index) as OrgEmployee;
if (obj.id == id) {
return obj;
}
}
return null;
}
public function deleteEmployee(id:int):void {
var obj:OrgEmployee = findEmployeeInSource(id);
if (obj ! = null) {
var index:int = employees.list.getItemIndex(obj);
employees.list.removeItemAt(index);
}
}
または関数。
コピーコード
コードは以下の通りです。
public function deleteEmployee(id:int):void {
var obj:OrgEmployee = null;
var list:IList = employees.list;
var len:int = list.length;
for (var index:int = 0; index < len; index++) {
obj = list.getItemAt(index) as OrgEmployee;
if (obj.id == id) {
list.removeItemAt(index);
return;
}
}
}
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
R言語による.tar.gz.zipファイルの解凍と圧縮
-
フレックスの用途を総合的に理解する
-
表中の列値の小数点以下2桁を保持するフレキシブルな数値フォーマット
-
flex Object オブジェクトの中身を繰り返し処理する。
-
ie9でポップアップウィンドウを閉じる際に__flash__removeCallbackが未定義エラーになる。
-
flex actionScriptの時間処理の合計が、合計された日付を返す
-
どのようにFlexでコンポーネントの外をクリックするかどうかを決定する
-
Flexの親子ウィンドウは、アイデアやソースコードを実装するためにお互いを呼び出す
-
Flexフォントの太字問題は、英語フォントのみ太字にすることができる
-
TitleWindowのフレックスは、アイデアと実装の値を渡すために