Hello,
Please open NxInspector.pas file, find line:
CODE
with Item.Editor do
and paste code from there to the end of method:
CODE
with Item.Editor do
begin
Parent := Self;
BorderStyle := bsNone;
SetBounds(SplitterPosition + 1, Item.Top, EditWidth, FRowHeight);
end;
Item.Editor.EditorUpdating := True; { do not fire inplace edit events }
Item.BeginEditing;
with Item.Editor do
begin
OnKeyDown := DoItemEditorKeyDown;
OnChange := DoItemEditorEdit;
end;
Item.Editor.EditorUpdating := False;
Windows.SetFocus(Item.Editor.Handle);
end else
begin
if Assigned(FEditingItem) then
begin
FEditingItem.EndEditing;
FEditingItem := nil;
end;
Windows.SetFocus(Self.Handle);
end;
end;
end;
I hope tha it helps.
Best regards