Y exactamente ¿cuál es el problema? Si realmente se llama a Notification al momento de insertar la "vista" pues bastaría algo como:
Código Delphi
[-]
procedure TMicxGrid.Notification(AComponent: TComponent; Operation: TOperation);
begin
inherited;
if (Operation = opInsert) and (AComponent is TcxGridDBTableView) then
begin
TcxGridDBTableView(AComponent).PonteElSaco;
end;
end;
// Saludos