1 <?xml version="1.0" encoding="utf-8"?>
3 xmlns:fx="http://ns.adobe.com/mxml/2009"
4 xmlns:mx="library://ns.adobe.com/flex/mx"
5 xmlns:edit="net.systemeD.potlatch2.mapfeatures.editors.*"
6 xmlns:flexlib="flexlib.controls.*"
7 xmlns:controls="net.systemeD.controls.*"
9 toolTip="{fieldDescription}"
10 direction="{fieldDirection}" styleName="titledEditor">
12 <mx:Label text="{fieldName}:"/>
13 <controls:PromptingTextInputWarning id="inputBox" prompt="{prompt}" text="{value}" width="100%"
14 focusOut="value = inputBox.text" enter="value = inputBox.text"
15 restrict=" -" />
19 [Bindable(event="factory_set")]
20 protected function get prompt():String {
21 return _factory == null ? null : FreeTextEditorFactory(_factory).notPresentText;
25 </edit:SingleTagEditor>