6
Dodawanie kolumn do siatki klientów za pomocą obserwatora lub przesłanianie siatki klientów
Mam problem z dodaniem kolumny do siatki klientów i wyświetlaniem wartości w tej kolumnie. Oto kod obserwatora, który próbowałem wyświetlić kolumnę: - if ($block->getType() == 'adminhtml/customer_grid') { $customer = $observer->getCustomer(); $collection = Mage::getResourceModel('customer/customer_collection'); $block->addColumnAfter('mobile', array( 'header' => 'Mobile No.', 'type' => 'text', 'index' => 'mobile', ), 'email'); } Dodaje to …