Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
synergy-components
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
community
synergy-components
Commits
983aba6a
Commit
983aba6a
authored
Mar 28, 2018
by
Sergey Antonovich
🇯🇵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new file
parent
8118d602
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
doc/emc/numbering-rows.mb
doc/emc/numbering-rows.mb
+29
-0
No files found.
doc/emc/numbering-rows.mb
0 → 100644
View file @
983aba6a
# Нумерация строк в дин.таблицах
![Демонстрация](numbering-rows.webm)
**Поддерживаемая версия Synergy**: 3.15 (wilkes)
## Инструкция по использованию
* Скопировать скрипт ниже и вставить куда угодно.
* Указать название `id-шник дин.таблицы` и название компонента
```javascript
function numericTable(tableID,cmpID){
var tbl = model.playerModel.getModelWithId(""+tableID);
tbl.modelBlocks.forEach(function(item, key){
try{
model.playerModel.getModelWithId(""+cmpID,""+tbl.asfProperty.id,item.tableBlockIndex).setValue(""+parseInt(++key));
}catch(Exception){
model.playerModel.getModelWithId(""+cmpID).setValue(""+parseInt(++key));
}
});
if(('numericCode' in tbl) === false){
tbl.on('tableRowAdd',function(){numericTable(tableID,cmpID);});
tbl.on('tableRowDelete',function(){numericTable(tableID,cmpID);});
tbl.numericCode = true;
}
}
numericTable('table1','num'); // Название таблицы, название компонента
```
\ No newline at end of file
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