Jump to content

HelperList MAke Selectable List


Recommended Posts

Hi everyone,

PrestaShop Version 1.6.1.23

I have a some problems with HelperList Class. I'm need to a list on the my website's dashboard. I'm created an HelperList like that

 

...
$this->fields_list = array(
            'checkbox' => array(
                'type' => 'checkbox',
                'title' => $this->l(''),
                'orderby' => false,
                'filter' => false,
                'search' => false
            ),

            'id_product' => array(
                'title' => $this->l('#'),
                'width' => 140,
                'type' => 'text',
            ),
            'name' => array(
                'title' => $this->l('Ürün Adı'),
                'width' => 140,
                'type' => 'text',
            ),
        );
        $helper = new HelperList();
...

Everything is ok but i can't see my checkboxes on the list.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...