Changeset 1180

Show
Ignore:
Timestamp:
07/01/09 01:53:05 (4 years ago)
Author:
tschaub
Message:

Making the bookmark dialog modal to avoid many open bookmark dialogs. Selecting the text on focus to make it less easy to select only part of the url.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer.js

    r1168 r1180  
    13471347            title: "Bookmark URL", 
    13481348            layout: 'form', 
     1349            labelAlign: 'top', 
     1350            modal: true, 
     1351            bodyStyle: "padding: 5px", 
     1352            width: 300, 
    13491353            items: [{ 
    13501354                xtype: 'textfield', 
    13511355                fieldLabel: 'Permalink', 
    13521356                readOnly: true, 
     1357                anchor: "100%", 
     1358                selectOnFocus: true, 
    13531359                value: url 
    1354             }], 
    1355             width: 300 
     1360            }] 
    13561361        }); 
    13571362 
    13581363        win.show(); 
     1364        win.items.first().selectText(); 
    13591365 
    13601366        return url;