Hi,
I'm trying to open the proposal form on an editable AbstractSmartColumn<Long> after adding an empty row to a table. Is this possible or not?
I put following code in the execAction of a menu I created on the table but the proposalform is not showing:
ITableRow row = getBeneficiaryField().getTable().createRow();
getTable().addRow(row, true);
AbstractSmartField<Long> field = (AbstractSmartField<Long>) getTable().getNameColumn().execPrepareEdit(row);
field.getUIFacade().openProposalFromUI(null, false);
field.getProposalForm().activate();
Is there another way? Maybe to start the edit on the SmartColumn for the current row?