Sunday, November 24, 2013

Disabling the sequential behavior of theADF train

Create a bean in the request scope :
package view.test;


public class TrainTest {
    public TrainTest() {
        super();
    }
    private boolean sequntial=false;

    public void setSequntial(boolean sequntial) {
        this.sequntial = sequntial;
    }

    public boolean isSequntial() {
        return sequntial;
    }
}
Create a bounded taskflow selecting the train option selected 


No comments:

Post a Comment