Hi All,
I am wondering does the DataGridColumn have a hideEffect/ShowEffect
style setting? I wanted to
have a wipeleft effect when somebody clicks on a column. I have been trying:
var dgc:DataGridColumn = new DataGridColumn();
var wipeOut:WipeLeft = new WipeLeft();
public function wipeOutFunc(event:MouseEvent):void {
dgc.setStyle("hideEffect",wipeOut); // also tried "hide","show", and
"showEffect to no effect
dgc.visible = false;
}
Thanks in advance,
-Tino
PS: Not complete code.

