グループ化された高度なデータグリッドがあります。グループ内のアイテムを使用して、アイテムをダブルクリックすると、ユーザーがそのエントリを編集できるポップアップが作成されるように設定されています。私が抱えている問題は、グループタイトルをダブルクリックすると、ポップアップが空白の情報でアクティブになることです。これが機能しないようにするにはどうすればよいですか?
これがmxmlコードです
<mx:AdvancedDataGrid id="plugList" designViewDataType="tree" width="100%" height="100%"
initialize="gc.refresh();" doubleClickEnabled="true" itemDoubleClick="plugList_itemDoubleClickHandler(event)">
<mx:dataProvider>
<mx:GroupingCollection2 id="gc" source="{plugs}">
<mx:grouping>
<mx:Grouping>
<mx:GroupingField name="traderTitle"/>
</mx:Grouping>
</mx:grouping>
</mx:GroupingCollection2>
</mx:dataProvider>
<mx:columns>
<mx:AdvancedDataGridColumn headerText="Title" dataField="traderTitle"/>
<mx:AdvancedDataGridColumn headerText="Anchor" dataField="traderAnchor"/>
<mx:AdvancedDataGridColumn headerText="URL" dataField="url"/>
<mx:AdvancedDataGridColumn dataField="status" headerText="Status" width="75"/>
</mx:columns>
</mx:AdvancedDataGrid>