Hi,
I want to know if its possible to get values from field columns in FormTable
using ActionLink.
For example:
FormTable with ActionLinks -
AbstractLink[] links = new AbstractLink[] { removeLink, doSomething };
String[] properties = {"x_number","x_description"};
column.setDecorator(new DekoratorLinka(tablica, links, properties ));
column.setSortable(false);
table.addColumn(column);
Actionlink doSomething has a listener method.
(Im using my Decorator for passing more than one value ).
Table is of FormTable type with one FieldColumn in it.
I can get valuse for x_number and x_description.
What I want to know is how to get value from FieldColumn in doSomething
listener.
If i use columnName.getValue() it returns null.
Thanks in advance !