Mercurial > lada > lada-client
changeset 1035:479782c96efa
Code style.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 18 Feb 2016 11:21:42 +0100 |
parents | 4d4de99bbe53 |
children | 5ed859241fc9 |
files | app/view/grid/Messung.js app/view/grid/Ortszuordnung.js app/view/grid/PKommentar.js app/view/grid/Probenzusatzwert.js |
diffstat | 4 files changed, 16 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/app/view/grid/Messung.js Thu Feb 18 11:21:22 2016 +0100 +++ b/app/view/grid/Messung.js Thu Feb 18 11:21:42 2016 +0100 @@ -253,14 +253,15 @@ this.readOnly = b; if (b === true) { //Readonly - if (this.getPlugin('rowedit')){ + if (this.getPlugin('rowedit')) { this.getPlugin('rowedit').disable(); } this.down('button[action=delete]').disable(); this.down('button[action=add]').disable(); - }else{ + } + else { //Writable - if (this.getPlugin('rowedit')){ + if (this.getPlugin('rowedit')) { this.getPlugin('rowedit').enable(); } //this.down('button[action=delete]').enable();
--- a/app/view/grid/Ortszuordnung.js Thu Feb 18 11:21:22 2016 +0100 +++ b/app/view/grid/Ortszuordnung.js Thu Feb 18 11:21:42 2016 +0100 @@ -135,14 +135,15 @@ this.readOnly = b; if (b) { //Readonly - if (this.getPlugin('rowedit')){ + if (this.getPlugin('rowedit')) { this.getPlugin('rowedit').disable(); } this.down('button[action=delete]').disable(); this.down('button[action=add]').disable(); - }else{ + } + else { //Writable - if (this.getPlugin('rowedit')){ + if (this.getPlugin('rowedit')) { this.getPlugin('rowedit').enable(); } //this.down('button[action=delete]').enable();
--- a/app/view/grid/PKommentar.js Thu Feb 18 11:21:22 2016 +0100 +++ b/app/view/grid/PKommentar.js Thu Feb 18 11:21:42 2016 +0100 @@ -134,14 +134,15 @@ this.readOnly = b; if (b) { //Readonly - if (this.getPlugin('rowedit')){ + if (this.getPlugin('rowedit')) { this.getPlugin('rowedit').disable(); } this.down('button[action=delete]').disable(); this.down('button[action=add]').disable(); - }else{ + } + else { //Writable - if (this.getPlugin('rowedit')){ + if (this.getPlugin('rowedit')) { this.getPlugin('rowedit').enable(); } //this.down('button[action=delete]').enable();
--- a/app/view/grid/Probenzusatzwert.js Thu Feb 18 11:21:22 2016 +0100 +++ b/app/view/grid/Probenzusatzwert.js Thu Feb 18 11:21:42 2016 +0100 @@ -180,14 +180,15 @@ this.readOnly = b; if (b) { //Readonly - if (this.getPlugin('rowedit')){ + if (this.getPlugin('rowedit')) { this.getPlugin('rowedit').disable(); } this.down('button[action=delete]').disable(); this.down('button[action=add]').disable(); - }else{ + } + else { //Writable - if (this.getPlugin('rowedit')){ + if (this.getPlugin('rowedit')) { this.getPlugin('rowedit').enable(); } //this.down('button[action=delete]').enable();