Toggle custom enum with 3 or more options
Hi, is there a way to toggle an enum field with 3 or more options?
For example, my field in one table is:
`status` enum('active', 'standby', 'rejected') NOT NULL,
In my module fuel where I'm using that table I want to change its value without the edit option. If I click change from active to standby, other click, to rejected, other click to active, Just like active and published works, is there a way to do that?
Comments
public $boolean_fields = array('my_prop');