Commit 1179ea5ed82700f76ce974a1e9577d7a4597d63d

Authored by Elena.Budnik
1 parent ab751308

sort by default all local parameters (nodes and leafs) by name

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
js/app/views/ExplorerUI.js
... ... @@ -205,7 +205,7 @@ Ext.define('amdaUI.ExplorerUI', {
205 205 {
206 206 text: 'Name',
207 207 scope : this,
208   - tooltip: { text: 'Sort out Local Data by Mission name', align: 'bl-tl' },
  208 + tooltip: { text: 'Sort out AMDA DataBase Data by Mission Name', align: 'bl-tl' },
209 209 pressed: true,
210 210 enableToggle : true,
211 211 toggleGroup: 'sorting',
... ... @@ -224,7 +224,7 @@ Ext.define('amdaUI.ExplorerUI', {
224 224 {
225 225 text: 'Target',
226 226 scope : this,
227   - tooltip: { text: 'Sort Out Local Data by Mission main target', align: 'bl-tl' },
  227 + tooltip: { text: 'Sort out AMDA DataBase Data by Mission Main Target', align: 'bl-tl' },
228 228 enableToggle : true,
229 229 toggleGroup: 'sorting',
230 230 handler: function(){
... ... @@ -262,7 +262,7 @@ Ext.define('amdaUI.ExplorerUI', {
262 262 nodeType : treeType
263 263 },
264 264 model: 'amdaModel.AmdaNode',
265   - sorters:[{ property:'leaf', direction: 'DES' },
  265 + sorters:[{ direction: 'DES' },
266 266 { sorterFn: function(o1, o2){
267 267 if (o1.get('nodeType') !== 'localParam')
268 268 return;
... ...