I want one of my table columns to have deleteButton.
ActionCell<Entrata> deleteCell = new ActionCell<Entrata>("x",new Delegate<Entrata>() { @Override public void execute(Entrata object) {
Good, but this line throws an error:
Column<Entrata,Entrata> deleteColumn = new Column<Entrata, Entrata>(deleteCell);
"Unable to instantiate Column type"
What do you think?
source share