Requirement
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<af:trainButtonBar id="pt_tbb1" | |
value="#{controllerContext.currentViewPort.taskFlowContext.trainModel}"/> |
Environment
JDeveloper/ADF 11.1.1.7
Solution
There is a simple solution I found on http://www.adftips.com/2010/10/adf-ui-how-to-specify-actionlistener.html to create custom buttons for the previous / next functionality.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<af:commandButton id="back" text="Back" | |
action="#{controllerContext.currentViewPort.taskFlowContext.trainModel.getPrevious}" | |
actionListener="#{yourActionListener}" | |
/> | |
<af:commandButton id="next" text="Next" | |
action="#{controllerContext.currentViewPort.taskFlowContext.trainModel.getNext}" | |
actionListener="#{yourActionListener}" | |
/> |
But there is still one thing missing. The buttons are always enabled. Unfortunataly there is no easy way to set the disabled property right from the given trainModel that is accessible by EL.
To solve this we create a managed bean as follows:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package enpit.sample.adf.controller; | |
import oracle.adf.controller.ControllerContext; | |
import oracle.adf.controller.TaskFlowContext; | |
import oracle.adf.controller.TaskFlowTrainModel; | |
import oracle.adf.controller.TaskFlowTrainStopModel; | |
import oracle.adf.controller.ViewPortContext; | |
import oracle.adfinternal.controller.train.TrainStopModel; | |
public class TrainController { | |
public TrainController() { | |
super(); | |
} | |
/** | |
* | |
* @return | |
*/ | |
public boolean getPreviousDisabled() { | |
TaskFlowTrainModel trainModel = getTrainModel(); | |
TaskFlowTrainStopModel currentStop = trainModel.getCurrentStop(); | |
TrainStopModel previoudStopModel = | |
(TrainStopModel)trainModel.getPreviousStop(currentStop); | |
if (previoudStopModel == null) { | |
return true; | |
} | |
return previoudStopModel.isDisabled(); | |
} | |
/** | |
* | |
* @return | |
*/ | |
public boolean getNextDisabled() { | |
TaskFlowTrainModel trainModel = getTrainModel(); | |
TaskFlowTrainStopModel currentStop = trainModel.getCurrentStop(); | |
TrainStopModel nextStopModel = | |
(TrainStopModel)trainModel.getNextStop(currentStop); | |
if (nextStopModel == null) { | |
return true; | |
} | |
return nextStopModel.isDisabled(); | |
} | |
private TaskFlowTrainModel getTrainModel() { | |
ControllerContext controllerContext = ControllerContext.getInstance(); | |
ViewPortContext currentViewPortCtx = | |
controllerContext.getCurrentViewPort(); | |
TaskFlowContext taskFlowCtx = currentViewPortCtx.getTaskFlowContext(); | |
TaskFlowTrainModel trainModel = taskFlowCtx.getTaskFlowTrainModel(); | |
return trainModel; | |
} | |
} |
Now it is possible to bind the properties for disabled status
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<af:commandButton id="back" text="Back" | |
action="#{controllerContext.currentViewPort.taskFlowContext.trainModel.getPrevious}" | |
actionListener="#{yourActionListener}" | |
disabled="#{pageFlowScope.trainController.previousDisabled}" | |
/> | |
<af:commandButton id="next" text="Next" | |
action="#{controllerContext.currentViewPort.taskFlowContext.trainModel.getNext}" | |
actionListener="#{yourActionListener}" | |
disabled="#{pageFlowScope.trainController.nextDisabled}" | |
/> |
Similiar posts
No comments:
Post a Comment