Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
Synergy Constructor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Public Documentation
Synergy Constructor
Commits
2265deb0
Commit
2265deb0
authored
2 years ago
by
Irina Oleynik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update events.rst
parent
68d0f4d1
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
user_manual/events.rst
user_manual/events.rst
+39
-0
No files found.
user_manual/events.rst
View file @
2265deb0
...
@@ -216,6 +216,28 @@
...
@@ -216,6 +216,28 @@
console.log('dblclick', e)
console.log('dblclick', e)
})
})
Событие клика на конкретный файл в компоненте "Список файлов работ"
~~~~~~~~~~~~~~~~~
.. code-block:: js
Пример подписки на событие:
addListener('work_file_list_select_item', 'my_work_file_list_code', (e) => { console.log("Selected file ", e.UUID) })
/
WORK_FILE_LIST_SELECT_ITEM = 'work_file_list_select_item',
Событие двойного клика на конкретный файл в компоненте "Список файлов работ"
~~~~~~~~~~~~~~~~~
.. code-block:: js
Пример подписки на событие:
addListener('work_file_list_dbl_select_item', 'my_work_file_list_code', (e) => { console.log("Selected file ", e.UUID) })
/
WORK_FILE_LIST_DBL_SELECT_ITEM = 'work_file_list_dbl_select_item',
Событие изменения количества отображаемых работ
Событие изменения количества отображаемых работ
~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~
...
@@ -249,6 +271,18 @@
...
@@ -249,6 +271,18 @@
// TODO пока еще нет такого кейса
// TODO пока еще нет такого кейса
WORKLIST_COLOR_FILLING = 'worklist_color_filling',
WORKLIST_COLOR_FILLING = 'worklist_color_filling',
Событие для изменения идентификатора работы в компоненте "Список файлов работы"
~~~~~~~~~~~~~~~~~
.. code-block:: js
Пример генерации события:
let event = {
type: 'work_file_list_change_uuid',
actionID: 'actionID',
}
fire(event, 'код компонента "Список файлов работы"');
События для компонента "Представление реестра"
События для компонента "Представление реестра"
--------
--------
...
@@ -280,6 +314,11 @@
...
@@ -280,6 +314,11 @@
})
})
/
/
REGISTRY_ITEM_CLICK = 'registry_item_click',
REGISTRY_ITEM_CLICK = 'registry_item_click',
Событие клика на конкретный файл в компоненте "Список файлов работ"
~~~~~~~~~~~~~~~~~
.. code-block:: js
Событие успешной загрузки записей реестра
Событие успешной загрузки записей реестра
~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment