Losing the current row without doing anything
737412Nov 26 2009 — edited Dec 1 2009I using 10g and my page have a VOR (viewobject readonly) to control form data but...
I'm losing several times the current row ... for example I put this code in a button:
public String clickAction() {
AdminUCAtoCartorarioAMImpl am = null;
try {
am = ( AdminUCAtoCartorarioAMImpl )super.getApplicationModule( "AdminUCAtoCartorarioAMDataControl" );
am.getAmbienteEscaninhoVOR().getCurrentRow(); //Here, sometimes brings me null.
} catch (Exception e) {
e.printStackTrace();
}
return null;
}