What do you mean by bulk update a checkbox? What exactly do you want to accomplish?
I have few entries with checkbox contain
Option 1
Option 2
Option 3
I need to edit entries that has Option 2 to be Option 1
There is no way to effect a change like this without custom code. Formidable stores checkbox values either as a single text value or a PHP serialized array depending on whether you have multi-select enabled or not. It's not hard to change a single value, but if you are using multi-select, you have to extract the serialized array, unserialize it, make your edit, serialize the array again, and replace the current values in the database.
It may help if you take a look at how Formidable stores its data using the metadata schema. You can find instructional videos here: https://formidable-masterminds.com
Please login or Register to submit your answer