use of com.servoy.j2db.IFormManager in project servoy-client by Servoy.
the class CmdFindAll method doIt.
/*
* _____________________________________________________________ The methods below override methods from superclass AbstractCmd
*/
@Override
public UndoableEdit doIt(java.util.EventObject ae) {
try {
// $NON-NLS-1$
application.blockGUI(application.getI18NMessage("servoy.menuitem.showAll.status.text"));
IFormManager fm = application.getFormManager();
IForm dm = fm.getCurrentForm();
if (dm != null)
dm.loadAllRecords();
} finally {
application.releaseGUI();
}
return null;
}
use of com.servoy.j2db.IFormManager in project servoy-client by Servoy.
the class CmdFindMode method doIt.
@Override
public UndoableEdit doIt(java.util.EventObject ae) {
IFormManager fm = application.getFormManager();
IForm dm = fm.getCurrentForm();
if (dm != null)
dm.find();
return null;
}
Aggregations