Hi, I'm trying to create an editable table using Pivot's TableView. Pivot supports TableView.RowEditor which enables one row to be editable when double clicked, but I want to make all rows editable at the same time, similar to input components in a dataTable in JSF, or input elements in a table in HTML. I think it can be done with a custom TableView.CellRenderer. To begin, I tried using TableViewBooleanCellRenderer and TableViewTextAreaCellRenderer so I can make editable table with checkboxes and text areas, but it didn't work as I expected; checkboxes and text areas are disabled. I tried setting TableView.isEnabled = true, TableViewBooleanCellRenderer .isCheckboxDisabled = false, TableViewTextAreaCellRenderer .isEditable = true, but it didn't fix the issue. Does anyone know how I should proceed?
apptaro
