package flexa.ff;
import flexa.fb.*;
import java.util.Map;
import java.util.HashMap;
import javax.script.*;
import java.util.ArrayList;
public class subformrow extends FComponent {
    //
    // CONSTRUCTOR
    //
    public subformrow() {
        super("ff.subformrow");
    }
    
    // 
    // Methods
    //
    
    // 
    // Events
    //
	public void event(String aAction, FContext aContext) throws Exception {
        
    
        // delete EVENT
        if( LibText.stringToArray("" + this.name + ".delete").contains(aAction) ) {
        			// Remove myself
			if( this.fobject != null ) {
			    ((FCollection)(((subform)this.container).fobject)).remove(this.fobject);
			}
			this.removeMyself();

        }
    


	    super.event(aAction, aContext);
	}
	
	
	
	
}