Hi,
I m developping an iView and I use a bean.
I work on Portal 6
I have an exemple of an application on portal 5
the folowing line of the bean are wrong in the portal 6 :
column = model.getColumn("NAME");
column.setTitle("Nom");
column.setType(TableColumnType.LINK);
column.setOnCellClick("onModifyClick");
column is of type TableColumn.
I have the folowong error on Eclipse:
canot convert from com.sapportals.htmlb.enum.table.TableColumn to javax.swing.table.TableColumn;
and is undefind for tableColumnType for the third last one.
Is there another type of tableColumn, or is it an other error??
Best Regards
Add a comment