use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class UserGridForm method createNewModel.
private GridModel createNewModel() {
GridModel model = new GridModel();
GridModelRow row;
row = model.newRow();
row.addElement("field1", new EditBoxModel("Field11Value"));
row.addElement("field2", new EditBoxModel("Field12Value"));
row.addElement("field3", new DateTimeModel());
row.addElement("field4", new CheckBoxModel(true));
row.addElement("field5", new ImageModel(ImageComponent.getImageBytes("C:\\Sandbox\\Jaffa\\source\\httpunittest\\html\\widgets\\tests\\testimage1_up.gif")));
row.addElement("field6", new DropDownModel("Value1"));
row = model.newRow();
row.addElement("field1", new EditBoxModel("Field21Value"));
row.addElement("field2", new EditBoxModel("Field22Value"));
row.addElement("field3", new DateTimeModel(new DateTime()));
row.addElement("field4", new CheckBoxModel(false));
row.addElement("field5", new ImageModel(ImageComponent.getImageBytes("C:\\Sandbox\\Jaffa\\source\\httpunittest\\html\\widgets\\tests\\testimage1_down.gif")));
row.addElement("field6", new DropDownModel("Value2"));
row = model.newRow();
row.addElement("field1", new EditBoxModel("Field31Value"));
row.addElement("field2", new EditBoxModel("Field32Value"));
row.addElement("field3", new DateTimeModel(DateTime.addMonth(new DateTime(), 1)));
row.addElement("field4", new CheckBoxModel(true));
row.addElement("field5", new ImageModel(ImageComponent.getImageBytes("C:\\Sandbox\\Jaffa\\source\\httpunittest\\html\\widgets\\tests\\testimage1_up.gif")));
row.addElement("field6", new DropDownModel("Value3"));
return model;
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class Page1Form method setField2WV.
public void setField2WV(String value) {
EditBoxModel m = (EditBoxModel) getField2WM();
EditBoxController.updateModel(value, m);
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class Page1Form method setField1WV.
public void setField1WV(String value) {
EditBoxModel m = (EditBoxModel) getField1WM();
EditBoxController.updateModel(value, m);
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method getFieldWithValidationWM.
public WidgetModel getFieldWithValidationWM() {
if (w_fieldWithValidation == null) {
w_fieldWithValidation = new EditBoxModel();
w_fieldWithValidation.setValue(getFieldWithValidation());
}
return w_fieldWithValidation;
}
use of org.jaffa.presentation.portlet.widgets.model.EditBoxModel in project jaffa-framework by jaffa-projects.
the class EditBoxForm method setFieldWithValidationWV.
public void setFieldWithValidationWV(String value) {
EditBoxModel m = (EditBoxModel) getFieldWithValidationWM();
EditBoxController.updateModel(value, m);
}
Aggregations