does not display the print menu,
anyone help,
public function stock_pembelian()
{
$crud = $this->crud->generate_crud('pembelian');
$crud->columns('id_barang', 'id_supplier', 'harga_satuan', 'jumlah_beli', 'satuan_barang','tanggal_beli', 'keterangan');
$crud->set_relation('id_supplier', 'supplier', 'nama_supplier');
$crud->set_relation('id_barang', 'barang', 'nama_barang');
$this->mTitle = 'Stock Pembelian';
$this->mViewData['crud_data'] = $this->crud->render();
$this->render('crud');
}