diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2010-08-01 08:24:39 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2010-08-01 08:24:39 +0000 |
| commit | 01c98b86cddc100cdcedb3d5363b8fed6edacf1c (patch) | |
| tree | cc6a96988199cc5dbb1aece04bbf711a89e31fed /skins/jason/program.js | |
| parent | 32b9ea3f0445eb738c8f2526ad83aa3f4285048b (diff) | |
| download | xxv-01c98b86cddc100cdcedb3d5363b8fed6edacf1c.tar.gz xxv-01c98b86cddc100cdcedb3d5363b8fed6edacf1c.tar.bz2 | |
jason: update timer view if autotimer upgraded
Diffstat (limited to 'skins/jason/program.js')
| -rw-r--r-- | skins/jason/program.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/skins/jason/program.js b/skins/jason/program.js index 2d88fee..8195306 100644 --- a/skins/jason/program.js +++ b/skins/jason/program.js @@ -96,7 +96,7 @@ Ext.xxv.programGrid = function(viewer, record) { enableGroupingMenu:false, forceFit:true, showGroupName: false, - enableGrouping:true + enableGrouping:true }) ,tbar:new Ext.PagingToolbar({ pageSize: configuration.pageSize @@ -232,8 +232,8 @@ Ext.extend(Ext.xxv.programGrid, Ext.grid.GridPanel, { var ids = ""; for(var i = 0, len = sel.length; i < len; i++){ if(i != 0) - ids += ','; - ids += sel[i].data.id; + ids += ','; + ids += sel[i].data.id; } this.viewer.RecordID(ids); } @@ -250,11 +250,11 @@ Ext.extend(Ext.xxv.programGrid, Ext.grid.GridPanel, { var items = ""; for(var i = 0, len = sel.length; i < len; i++){ if(i != 0) - items += ','; + items += ','; if(sel[i].data.timerid == 0) { continue; } - items += sel[i].data.timerid; + items += sel[i].data.timerid; } this.viewer.gridNow.DeleteTimerId(items, this.store); } |
