Hi! i have a column of type "ctButton" with a "OPEN" button which open a nwe form.
i should show it only for the active record.
i found this code on your demo:
procedure ....listaGetCellType(Sender: TObject; RowIndex,
ColumnIndex: Integer; var AColumnType: TTIWColumnType;
var Editor: TTIWColumnEditor; var DynEditor: TTIWDynEditType);
begin
if ColumnIndex = 5 then begin
if RowIndex = GRID.Row then AColumnType := ctButton
else AColumnType := ctNormal ;
end;
end;
but it doesn't wotk with asyncactiverowMove=true ;
there's any way to do this?
thanks :)