I'm learning customer relationship management framework Eclipse Scout right now and would like to use text input from the UI for my search query. It goes something like this:
public IContribution createConstraints(){
int ageInput = ....;
return QL.contribution().where(eq(addYears(currentDate(), - ageInput), getParent().getCustomer().evtBirth));}
Does anyone know which object I need to take from the UI?
I know that would probably be in org.eclipse.scout.rt.client.ui.form.fields.composer.AbstractComposerValueBox.IntegerField
But how take the content of the field? Thanks in advance.