*新手提醒*
我有一个包含5列的AdvancedDataGrid。带标题标签的第二列需要能够在每个单元格中包含多行。
最初,我的网格数据提供者定义如下:
[Bindable]
public var mappedTagsArray:ArrayCollection = new ArrayCollection( [
{ name: "garbage-garbage", semanticTags: "garbage-flirt\ngarbage-garbage\ngarbage-noise\ngarbage-profanity", exitStrategy: "Fallback", confirmationMode: "IF NECESSARY", confirmationPromptlet: "cp5" },
{ name: "report-sim", semanticTags: "enquire-sim\nreport-sim", exitStrategy: "Direct", confirmationMode: "NEVER", confirmationPromptlet: "cp6" }
] );
Columns标签定义如下,带有内联TextArea组件来处理一个单元格中的多行:
<mx:AdvancedDataGridColumn id="semanticTags" headerText="Labels" dataField="semanticTags" editable="false">
<mx:itemRenderer>
<fx:Component>
<mx:HBox horizontalScrollPolicy="off" verticalScrollPolicy="off"
top="0" bottom="0" right="0" left="0">
<fx:Script>
<![CDATA[
import com.nuance.csportal.mw_api.CallerIntent;
public function get value() : String
{
return ta_labels.text;
}
override public function set data(value:Object):void
{
super.data = value;
ta_labels.text = value.semanticTags;
}
]]>
</fx:Script>
<!-- BUG: Scroll bar is fixed in one location; does not move with resizing of cell -->
<s:TextArea id="ta_labels" heightInLines="2" editable="false" borderVisible="false"
horizontalScrollPolicy="auto" verticalScrollPolicy="auto" contentBackgroundAlpha="0"
top="0" bottom="0" right="0" left="0"/>
</mx:HBox>
</fx:Component>
</mx:itemRenderer>
</mx:AdvancedDataGridColumn>
在这种情况下,semanticTags多行显示在Labels列的单元格中。
现在我已经创建了一个名为CallerIntent的自定义ActionScript类:
package com.nuance.csportal.mw_api
{
import mx.controls.List;
public class CallerIntent
{
public function CallerIntent( id:int, name:String, semanticTags:Array, exitStrategy:String, confirmationMode:String, confirmationPromptlet:String )
{
this.id = id;
this.name = name;
this.semanticTags = semanticTags;
this.exitStrategy = exitStrategy;
this.confirmationMode = confirmationMode;
this.confirmationPromptlet = confirmationPromptlet;
}
public var id:int;
public var name:String;
public var semanticTags:Array;
public var exitStrategy:String;
public var confirmationMode:String;
public var confirmationPromptlet:String;
}
}
在我的init()方法中调用我的表单的creationComplete,我填充了我的网格数据提供者:
public function init( event:Event ):void
{
var st1:Array = new Array( "garbage-flirt", "garbage-garbage", "garbage-noise", "garbage-profanity" );
var st2:Array = new Array( "enquire-sim", "report-sim" );
var ci1:CallerIntent = new CallerIntent( 1, "garbage-garbage", st1, "Fallback", "IF NECESSARY", "cp1" );
var ci2:CallerIntent = new CallerIntent( 2, "report-sim", st2, "Direct", "NEVER", "cp2" );
mappedTagsArray.addItem( ci1 );
mappedTagsArray.addItem( ci2 );
}
在这种情况下,我的应用程序崩溃在覆盖集数据方法中 ta_labels.text = value.semanticTags; 同 无法访问null对象引用的属性或方法。
这是真的 - 当我使用CallerIntent对象的ArrayCollection而不是未命名对象的ArrayCollection时,值仍为null(在这种情况下,value将保存未命名的Object)。
我尝试将函数的签名更改为 覆盖公共函数集数据(值:CallerIntent):void 并获得不兼容的覆盖。
有什么想法吗?谢谢! 邦尼
答案 0 :(得分:1)
我已经解决了我的问题。 在首次调用重写的set数据方法之后,我的网格数据提供程序将被填充。 因此我只需要把
if ( value != null )
围绕这段代码。