Hi,
I'd like to put a TextItem field on a dynamicForm which will contain default values (which can be overrided by the user).
At the of certains actions (Click on a button for an exemple), I'd like to retrieve the stuff which is in the textItem. I don't find a method which do that.
<<
final TextItem apiUrl = new TextItem("txtApiUrl");
apiUrl.setValue("http://localhost:8080/workey-j2ee-api/");
...
>>
I've tried apiUrl.getValue() & getValueName() but it always returns blank value.
Regards,
Denis.
I'd like to put a TextItem field on a dynamicForm which will contain default values (which can be overrided by the user).
At the of certains actions (Click on a button for an exemple), I'd like to retrieve the stuff which is in the textItem. I don't find a method which do that.
<<
final TextItem apiUrl = new TextItem("txtApiUrl");
apiUrl.setValue("http://localhost:8080/workey-j2ee-api/");
...
>>
I've tried apiUrl.getValue() & getValueName() but it always returns blank value.
Regards,
Denis.
Comment