Changeset 384 for gssim_ui/branches
- Timestamp:
- 08/12/12 13:44:06 (13 years ago)
- 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 62 62 63 63 <mx:ComboBox id="property_combo" dataProvider="{model.propertyList}" change="{service.getPropertyValue(property_combo.text);}"/> 64 <mx:Text Input id="property_value" text="{model.value}" />64 <mx:TextArea id="property_value" text="{model.value}" width="100%" height="100%" /> 65 65 <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%"/> 67 67 68 68 <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 77 77 78 78 } catch (SQLException e) { 79 setSqlError(" Textproperties", model, e);79 setSqlError("Application properties", model, e); 80 80 } catch (InstantiationException e) { 81 81 setDbConnectionError(model, e); … … 110 110 111 111 } catch (SQLException e) { 112 setSqlError(" Textproperties", model, e);112 setSqlError("Application properties", model, e); 113 113 } catch (InstantiationException e) { 114 114 setDbConnectionError(model, e); … … 141 141 142 142 } catch (SQLException e) { 143 setSqlError(" Textproperties", model, e);143 setSqlError("Application properties", model, e); 144 144 } catch (InstantiationException e) { 145 145 setDbConnectionError(model, e);
Note: See TracChangeset
for help on using the changeset viewer.