source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/control/config/ConfigChangeColumnEvent.as@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 899 bytes
Line 
1/* ConfigChangeColumnEvent.as */
2
3package gov.va.med.edp.control.config
4{
5 import com.adobe.cairngorm.control.CairngormEvent;
6
7 import flash.events.Event;
8
9 public class ConfigChangeColumnEvent extends CairngormEvent
10 {
11 public static const EVENT_CONFIG_CHANGE_COLUMN_SEQ: String = "configChangeColumnSequence";
12 public static const EVENT_CONFIG_CHANGE_COLUMN_WIDTH: String = "configChangeColumnWidth";
13 public static const EVENT_CONFIG_CHANGE_ROW_COLOR: String = "configChangeRowColor"
14
15 public var oldIndex: int;
16 public var newIndex: int;
17 public var widths: Array = [];
18 public var rowColor: String;
19
20 public function ConfigChangeColumnEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
21 {
22 super(type, bubbles, cancelable);
23 }
24
25 override public function clone():Event
26 {
27 return new ConfigChangeColumnEvent(type);
28 }
29 }
30}
Note: See TracBrowser for help on using the repository browser.