panel.setLayout(groupLayout);
add(panel);
// get value from config
final ConfigEntityCollection config = ConfigEntityCollection.getInstance();
txtDefaultRate.setText(config.getConfigEntity(txtDefaultRate.getName()).getValue());
txtDefaultReportDuration.setText(config.getConfigEntity(txtDefaultReportDuration.getName()).getValue());
txtFrom.setText(config.getConfigEntity(txtFrom.getName()).getValue());
txtTo.setText(config.getConfigEntity(txtTo.getName()).getValue());
txtNotes.setText(config.getConfigEntity(txtNotes.getName()).getValue());
}