use of org.jaffa.presentation.portlet.widgets.model.GridModel in project jaffa-framework by jaffa-projects.
the class PrinterOutputTypeViewerAction method do_RelatedOutputCommand_Delete_Clicked.
// .//GEN-END:do_RelatedOutputCommand_Update_Clicked_4_be
// .//GEN-BEGIN:do_RelatedOutputCommand_Delete_Clicked_1_be
/**
* Invokes the deleteOutputCommand() method on the component.
* @param rowNum The selected row on the Grid.
* @return The FormKey for the Delete screen of the OutputCommand object.
*/
public FormKey do_RelatedOutputCommand_Delete_Clicked(String rowNum) {
FormKey fk = null;
// .//GEN-END:do_RelatedOutputCommand_Delete_Clicked_1_be
// Add custom code before processing the action //GEN-FIRST:do_RelatedOutputCommand_Delete_Clicked_1
// .//GEN-LAST:do_RelatedOutputCommand_Delete_Clicked_1
// .//GEN-BEGIN:do_RelatedOutputCommand_Delete_Clicked_2_be
PrinterOutputTypeViewerForm myForm = (PrinterOutputTypeViewerForm) form;
PrinterOutputTypeViewerComponent myComp = (PrinterOutputTypeViewerComponent) myForm.getComponent();
GridModel model = (GridModel) myForm.getRelatedOutputCommandWM();
GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
if (selectedRow != null) {
try {
// .//GEN-END:do_RelatedOutputCommand_Delete_Clicked_2_be
// Add custom code before invoking the component //GEN-FIRST:do_RelatedOutputCommand_Delete_Clicked_2
// .//GEN-LAST:do_RelatedOutputCommand_Delete_Clicked_2
// .//GEN-BEGIN:do_RelatedOutputCommand_Delete_Clicked_3_be
fk = myComp.deleteOutputCommand((java.lang.Long) selectedRow.get("outputCommandId"));
} catch (ApplicationExceptions e) {
if (log.isDebugEnabled())
log.debug("Deletor Failed");
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, e);
} catch (FrameworkException e) {
log.error(null, e);
myForm.raiseError(request, ActionMessages.GLOBAL_MESSAGE, "error.framework.general");
}
}
// .//GEN-BEGIN:do_RelatedOutputCommand_Delete_Clicked_4_be
if (fk == null)
fk = new FormKey(myForm.NAME, myComp.getComponentId());
return fk;
}
use of org.jaffa.presentation.portlet.widgets.model.GridModel in project jaffa-framework by jaffa-projects.
the class PrinterOutputTypeViewerForm method getRelatedOutputCommandWM.
// .//GEN-END:_2_be
// .//GEN-BEGIN:RelatedOutputCommand_1_be
/**
* Getter for property OutputCommand. 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 outputCommand.
*/
public GridModel getRelatedOutputCommandWM() {
GridModel rows = (GridModel) getWidgetCache().getModel("relatedOutputCommand");
if (rows == null) {
rows = new GridModel();
populateRelatedOutputCommand(rows);
getWidgetCache().addModel("relatedOutputCommand", rows);
}
return rows;
}
use of org.jaffa.presentation.portlet.widgets.model.GridModel in project jaffa-framework by jaffa-projects.
the class FormUsageFinderAction method do_Rows_Delete_Clicked.
// .//GEN-END:_do_Rows_Update_Clicked_4_be
// .//GEN-BEGIN:_do_Rows_Delete_Clicked_1_be
/**
* Invokes the deleteObject() method on the component.
* @param rowNum The selected row on the Results screen.
* @return The FormKey for the Delete screen.
*/
public FormKey do_Rows_Delete_Clicked(String rowNum) {
FormKey fk = null;
// .//GEN-END:_do_Rows_Delete_Clicked_1_be
// Add custom code before processing the action //GEN-FIRST:_do_Rows_Delete_Clicked_1
// .//GEN-LAST:_do_Rows_Delete_Clicked_1
// .//GEN-BEGIN:_do_Rows_Delete_Clicked_2_be
FormUsageFinderForm myForm = (FormUsageFinderForm) form;
FormUsageFinderComponent myComp = (FormUsageFinderComponent) myForm.getComponent();
try {
// This will stop double submits
performTokenValidation(request);
GridModel model = (GridModel) myForm.getRowsWM();
GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
if (selectedRow != null) {
// .//GEN-END:_do_Rows_Delete_Clicked_2_be
// Add custom code before invoking the component //GEN-FIRST:_do_Rows_Delete_Clicked_2
// .//GEN-LAST:_do_Rows_Delete_Clicked_2
// .//GEN-BEGIN:_do_Rows_Delete_Clicked_3_be
fk = myComp.deleteObject((java.lang.String) selectedRow.get("formName"));
}
} catch (ApplicationExceptions e) {
if (log.isDebugEnabled())
log.debug("Delete 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 FormUsageLookupAction method do_Rows_Update_Clicked.
// .//GEN-END:_do_Rows_View_Clicked_4_be
// .//GEN-BEGIN:_do_Rows_Update_Clicked_1_be
/**
* 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;
// .//GEN-END:_do_Rows_Update_Clicked_1_be
// Add custom code before processing the action //GEN-FIRST:_do_Rows_Update_Clicked_1
// .//GEN-LAST:_do_Rows_Update_Clicked_1
// .//GEN-BEGIN:_do_Rows_Update_Clicked_2_be
FormUsageLookupForm myForm = (FormUsageLookupForm) form;
FormUsageLookupComponent myComp = (FormUsageLookupComponent) myForm.getComponent();
GridModel model = (GridModel) myForm.getRowsWM();
GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
if (selectedRow != null) {
try {
// .//GEN-END:_do_Rows_Update_Clicked_2_be
// Add custom code before invoking the component //GEN-FIRST:_do_Rows_Update_Clicked_2
// .//GEN-LAST:_do_Rows_Update_Clicked_2
// .//GEN-BEGIN:_do_Rows_Update_Clicked_3_be
fk = myComp.updateObject((java.lang.String) selectedRow.get("formName"));
} 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 OutputCommandFinderAction method do_Rows_Update_Clicked.
// .//GEN-END:_do_Rows_View_Clicked_4_be
// .//GEN-BEGIN:_do_Rows_Update_Clicked_1_be
/**
* 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;
// .//GEN-END:_do_Rows_Update_Clicked_1_be
// Add custom code before processing the action //GEN-FIRST:_do_Rows_Update_Clicked_1
// .//GEN-LAST:_do_Rows_Update_Clicked_1
// .//GEN-BEGIN:_do_Rows_Update_Clicked_2_be
OutputCommandFinderForm myForm = (OutputCommandFinderForm) form;
OutputCommandFinderComponent myComp = (OutputCommandFinderComponent) myForm.getComponent();
GridModel model = (GridModel) myForm.getRowsWM();
GridModelRow selectedRow = model.getRow(Integer.parseInt(rowNum));
if (selectedRow != null) {
try {
// .//GEN-END:_do_Rows_Update_Clicked_2_be
// Add custom code before invoking the component //GEN-FIRST:_do_Rows_Update_Clicked_2
// .//GEN-LAST:_do_Rows_Update_Clicked_2
// .//GEN-BEGIN:_do_Rows_Update_Clicked_3_be
fk = myComp.updateObject((java.lang.Long) selectedRow.get("outputCommandId"));
} 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;
}
Aggregations