Changeset 384 for gssim_ui/branches


Ignore:
Timestamp:
08/12/12 13:44:06 (13 years ago)
Author:
mcichenski
Message:
 
Location:
gssim_ui/branches/vine/gssimstudio/src/web/ui/flex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/app/gssim/gssimstudio/editor/GSSimStudioConfig.mxml

    r380 r384  
    6262                 
    6363                <mx:ComboBox id="property_combo" dataProvider="{model.propertyList}" change="{service.getPropertyValue(property_combo.text);}"/> 
    64                 <mx:TextInput id="property_value" text="{model.value}" /> 
     64                <mx:TextArea id="property_value" text="{model.value}" width="100%" height="100%" /> 
    6565                <mx:Button label="{resourceManager.getString('Common', 'Change')}" click="{service.saveProperty(property_combo.text, property_value.text);}" /> 
    66                 <mx:TextArea text="{model.error}" enabled="false" /> 
     66                <mx:TextArea text="{model.error}" enabled="false" width="100%"/> 
    6767                 
    6868                <components:RollOutMenu width="100%" height="100%" selectable="true" id="languageMenu"> 
  • gssim_ui/branches/vine/gssimstudio/src/web/ui/flex/java/gssim/gssimstudio/flex/app/editor/GSSimStudioConfig.java

    r383 r384  
    7777 
    7878                } catch (SQLException e) { 
    79                         setSqlError("Text properties", model, e); 
     79                        setSqlError("Application properties", model, e); 
    8080                } catch (InstantiationException e) { 
    8181                        setDbConnectionError(model, e);          
     
    110110                         
    111111                } catch (SQLException e) { 
    112                         setSqlError("Text properties", model, e); 
     112                        setSqlError("Application properties", model, e); 
    113113                } catch (InstantiationException e) { 
    114114                        setDbConnectionError(model, e);          
     
    141141                         
    142142                } catch (SQLException e) { 
    143                         setSqlError("Text properties", model, e); 
     143                        setSqlError("Application properties", model, e); 
    144144                } catch (InstantiationException e) { 
    145145                        setDbConnectionError(model, e);          
Note: See TracChangeset for help on using the changeset viewer.