Set SearchForm-Field from the TablePage-Value [message #1764947] |
Sun, 04 June 2017 15:54 |
|
I'm calling a TablePage. When calling the TablePage, a local variable is set.
Depending on the content of this variable, a search-field is to be assigned (the SearchForm belonging to the TablePage).
Concrete one could ...
@Override
protected void execInitField() {
if (<<[Here the Value from TablePage.this.localeVariable]>> = 1) {
setValue("yeaha");
}else{
setValue("?whats wrong?");
}
super.execInitField();
}
... but how do you get the value from the TablePage?
I think a transfer from the TablePage to the SearchForm can somehow not take place since the SearchForm is just using ...
@Override
protected Class<? extends ISearchForm> getConfiguredSearchForm() {
return xxxSearchForm.class;
}
... is called.
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.03625 seconds