Tje123 Posted November 1, 2017 Share Posted November 1, 2017 Im developing carrier module.in my backoffice i have bool value. in my field list like below public function renderList() { $this->addRowAction('edit'); $this->addRowAction('delete'); $this->bulk_actions = [ 'delete' => [ 'text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?') ] ]; $this->fields_list = [ 'availability' => [ 'title' => $this->l('Availability'), 'width' => 90, 'active' => 'Availability', 'type' => 'bool', 'orderby' => FALSE ], ] in my class i have define it like below public $availability=true; when i click on the `red cross` it's not updating. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now