TODO RiderList line 92
This commit is contained in:
@@ -146,6 +146,6 @@ class LoadRidersCommand implements ICommand implements IResponder {
|
||||
public function fault(rpcEvent:Dynamic):Void {
|
||||
// store an error message in the model locator
|
||||
// labels, alerts, etc can bind to this to notify the user of errors
|
||||
model.errorStatus = "Fault occured in LoadEmployeesCommand.";
|
||||
model.errorStatus = "Fault occured in LoadRidersCommand.";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
package command;
|
||||
|
||||
import model.Constants;
|
||||
import com.adobe.cairngorm.commands.ICommand;
|
||||
import com.adobe.cairngorm.control.CairngormEvent;
|
||||
import model.AppModelLocator;
|
||||
import t9.util.ColorTraces.*;
|
||||
|
||||
class RiderSelectCommand implements ICommand {
|
||||
private var model = AppModelLocator.getInstance();
|
||||
|
||||
public function execute(e:CairngormEvent):Void {
|
||||
trace(e.data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user