Skip to content

Instantly share code, notes, and snippets.

@aclips
Created August 21, 2023 07:45
Show Gist options
  • Save aclips/48985f08bccac62abb38dcd1872630db to your computer and use it in GitHub Desktop.
Save aclips/48985f08bccac62abb38dcd1872630db to your computer and use it in GitHub Desktop.
Отключение действий в канбане bitrix24
(function () {
BX.addCustomEvent('Kanban.Column:onAddedToGrid', (e) => {
e.canAddItem = false
e.canEdit = false
e.droppable = false
e.dragTargetColumn = false
e.isTotalFrozen = true
e.grid.canAddColumn = false
e.grid.canEditColumn = false
e.grid.canRemoveColumn = false
});
BX.addCustomEvent('Kanban.Grid:addItem', (e) => {
e.draggable = false
e.droppable = false
})
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment