use of org.kuali.kfs.kns.web.ui.ExtraButton in project cu-kfs by CU-CommunityApps.
the class IWantDocumentForm method createBackToVendorButton.
/**
* Creates the back button on the routing page that points to the vendor page
*
* @return
*/
protected ExtraButton createBackToVendorButton() {
ExtraButton clearButton = new ExtraButton();
clearButton.setExtraButtonProperty("methodToCall.continueToVendor");
clearButton.setExtraButtonSource("${" + KFSConstants.EXTERNALIZABLE_IMAGES_URL_KEY + "}buttonsmall_back.gif");
clearButton.setExtraButtonAltText("Back");
return clearButton;
}
use of org.kuali.kfs.kns.web.ui.ExtraButton in project cu-kfs by CU-CommunityApps.
the class IWantDocumentForm method createSubmitButton.
/**
* Creates the submit button on the routing page
*
* @return
*/
protected ExtraButton createSubmitButton() {
ExtraButton clearButton = new ExtraButton();
clearButton.setExtraButtonProperty("methodToCall.route");
clearButton.setExtraButtonSource("${" + KFSConstants.RICE_EXTERNALIZABLE_IMAGES_URL_KEY + "}buttonsmall_submit.gif");
clearButton.setExtraButtonAltText("Submit");
return clearButton;
}
Aggregations