Ver Mensaje Individual
  #6  
Antiguo 11-05-2006
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
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
Responder Con Cita