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
82ddfbe0
Commit
82ddfbe0
authored
Mar 28, 2018
by
Sergey Antonovich
🇯🇵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update numbering-rows.mb
parent
983aba6a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
doc/emc/numbering-rows.mb
doc/emc/numbering-rows.mb
+6
-6
No files found.
doc/emc/numbering-rows.mb
View file @
82ddfbe0
...
...
@@ -12,13 +12,13 @@
```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)
);
model.playerModel.getModelWithId(""+cmpID).setValue(""+tbl.modelBlocks.length
);
}catch(Exception){
model.playerModel.getModelWithId(""+cmpID).setValue(""+parseInt(++key));
}
tbl.modelBlocks.forEach(function(item,key){
model.playerModel.getModelWithId(""+cmpID,""+tbl.asfProperty.id,item.tableBlockIndex).setValue(""+parseInt(++key));
});
}
if(('numericCode' in tbl) === false){
tbl.on('tableRowAdd',function(){numericTable(tableID,cmpID);});
tbl.on('tableRowDelete',function(){numericTable(tableID,cmpID);});
...
...
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