Esteban Lorenzano wrote:
Hi,
I'm trying to use MAOneToManyComponentEditInPlace, and can't realize
how it is supposed to work... what I want to do is add rows and edit
them "InPlace"... now I can add new rows, but empty ones. Is possible
to edit them? how?
Thanks in advance,
Esteban
You need to specify #reportColumnClass
Keith
e.g.
description0060DriverName
^ MAStringDescription new
accessor: ((#driverName asAccessor) options: #driverNamesAvailable);
label: 'Driver';
fieldSize: 3; "just in case"
componentClass: MAAutoCompletingTextInputComponent;
beEditable;
reportColumnClass: MAEditableColumnAutoCompleting;
beSearchable;
bePersisted;
yourself