Hi Magento friend today's i'm share what is ColumnsEditingBulk component in Uicomponent Grid
In Uicomponent Grid The ColumnsEditingBulk UI component is an extension for the ColumnsEditor component. It provides the bulk update functionality.
How we are Integrate the ColumnsEditingBulk component with the ColumnsEditor component
<listing>
<columns name="columns">
<settings>
<editorConfig>
<param name="bulkConfig" xsi:type="array">
<item name="component" xsi:type="string">Magento_Ui/js/grid/editing/bulk</item>
<item name="template" xsi:type="string">ui/grid/editing/bulk</item>
</param>
<param name="bulkEnabled" xsi:type="boolean">true</param>
<param name="enabled" xsi:type="boolean">true</param>
</editorConfig>
</settings>
</columns>
</listing>
How we are Disable the ColumnsEditingBulk component on the ColumnsEditor component in Grid
Bellow example of how the ColumnsEditingBulk component disables the ColumnsEditor component -
<listing>
<columns name="columns">
<settings>
<editorConfig>
<param name="bulkEnabled" xsi:type="boolean">false</param>
<param name="enabled" xsi:type="boolean">true</param>
</editorConfig>
</settings>
</columns>
</listing>