use of org.jaffa.presentation.portlet.widgets.model.GridModel in project jaffa-framework by jaffa-projects.
the class UserViewerForm method getRelatedUserRoleWM.
// .//GEN-END:_2_be
// .//GEN-BEGIN:RelatedUserRole_1_be
/**
* Getter for property UserRole. This is invoked by the custom tag, when the jsp is rendered, to get the current value.
* This gets the current data from the component.
* @return Value of property userRole.
*/
public GridModel getRelatedUserRoleWM() {
GridModel rows = (GridModel) getWidgetCache().getModel("relatedUserRole");
if (rows == null) {
rows = new GridModel();
populateRelatedUserRole(rows);
getWidgetCache().addModel("relatedUserRole", rows);
}
return rows;
}
use of org.jaffa.presentation.portlet.widgets.model.GridModel in project jaffa-framework by jaffa-projects.
the class TaskFinderAction method do_Rows_Activate_Clicked.
/**
* Invokes the activateTask() method on the component.
* @param rowNum The selected row on the Results screen.
* @return The FormKey for the Update screen.
*/
public FormKey do_Rows_Activate_Clicked(String rowNum) {
FormKey fk = null;
TaskFinderForm myForm = (TaskFinderForm) form;
TaskFinderComponent myComp = (TaskFinderComponent) myForm.getComponent();
GridModel model = (GridModel) myForm.getRowsWM();
GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
if (selectedRow != null) {
try {
myComp.activateTask((java.lang.String) selectedRow.get("scheduledTaskId"));
fk = myComp.displayResults();
} catch (ApplicationExceptions e) {
if (log.isDebugEnabled())
log.debug("Activate Task Failed");
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, e);
} catch (FrameworkException e) {
log.error(null, e);
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, "error.framework.general");
}
}
// Direct User back to current form
if (fk == null)
fk = myComp.getResultsFormKey();
return fk;
}
use of org.jaffa.presentation.portlet.widgets.model.GridModel in project jaffa-framework by jaffa-projects.
the class TaskFinderAction method do_Rows_Update_Clicked.
/**
* Invokes the updateObject() method on the component.
* @param rowNum The selected row on the Results screen.
* @return The FormKey for the Update screen.
*/
public FormKey do_Rows_Update_Clicked(String rowNum) {
FormKey fk = null;
TaskFinderForm myForm = (TaskFinderForm) form;
TaskFinderComponent myComp = (TaskFinderComponent) myForm.getComponent();
GridModel model = (GridModel) myForm.getRowsWM();
GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
if (selectedRow != null) {
try {
fk = myComp.updateObject((java.lang.String) selectedRow.get("scheduledTaskId"));
} catch (ApplicationExceptions e) {
if (log.isDebugEnabled())
log.debug("Update Failed");
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, e);
} catch (FrameworkException e) {
log.error(null, e);
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, "error.framework.general");
}
}
// Direct User back to current form
if (fk == null)
fk = myComp.getResultsFormKey();
return fk;
}
use of org.jaffa.presentation.portlet.widgets.model.GridModel in project jaffa-framework by jaffa-projects.
the class TaskFinderAction method do_Rows_Inactivate_Clicked.
/**
* Invokes the inactivateTask() method on the component.
* @param rowNum The selected row on the Results screen.
* @return The FormKey for the Update screen.
*/
public FormKey do_Rows_Inactivate_Clicked(String rowNum) {
FormKey fk = null;
TaskFinderForm myForm = (TaskFinderForm) form;
TaskFinderComponent myComp = (TaskFinderComponent) myForm.getComponent();
GridModel model = (GridModel) myForm.getRowsWM();
GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
if (selectedRow != null) {
try {
myComp.inactivateTask((java.lang.String) selectedRow.get("scheduledTaskId"));
fk = myComp.displayResults();
} catch (ApplicationExceptions e) {
if (log.isDebugEnabled())
log.debug("Inactivate Task Failed");
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, e);
} catch (FrameworkException e) {
log.error(null, e);
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, "error.framework.general");
}
}
// Direct User back to current form
if (fk == null)
fk = myComp.getResultsFormKey();
return fk;
}
use of org.jaffa.presentation.portlet.widgets.model.GridModel in project jaffa-framework by jaffa-projects.
the class TaskFinderAction method do_Rows_ViewFailedTasks_Clicked.
/**
* Invokes the viewFailedTasks() method on the component.
* @param rowNum The selected row on the Results screen.
* @return The FormKey for the QueueViewer screen.
*/
public FormKey do_Rows_ViewFailedTasks_Clicked(String rowNum) {
FormKey fk = null;
TaskFinderForm myForm = (TaskFinderForm) form;
TaskFinderComponent myComp = (TaskFinderComponent) myForm.getComponent();
GridModel model = (GridModel) myForm.getRowsWM();
GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
if (selectedRow != null) {
try {
fk = myComp.viewFailedTasks((java.lang.String) selectedRow.get("scheduledTaskId"), selectedRow.get("businessObject"));
} catch (ApplicationExceptions e) {
if (log.isDebugEnabled())
log.debug("QueueViewer Failed");
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, e);
} catch (FrameworkException e) {
log.error(null, e);
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, "error.framework.general");
}
}
// The Viewer will be rendered in a new window
// We don't want to see the existing HistoryNav in that window
// Hence, initialize the HistoryNav
HistoryNav.initializeHistoryNav(request);
// Direct User back to current form
if (fk == null)
fk = myComp.getResultsFormKey();
return fk;
}
Aggregations