gpt4 book ai didi

apache-flex - Flex 文本输入焦点

转载 作者:行者123 更新时间:2023-12-04 06:17:56 25 4
gpt4 key购买 nike

在我的 Air 应用程序上,我有两个焦点问题。
确实,当我尝试使用 Tab 键在表单内移动时,顺序不好。
第二点,即使光标在文本输入中,焦点边框也不可见。

找到下面的代码部分

用tab键移动

this.focusManager.activate();
this.focusManager.setFocus(this.fdNom);

我的文本输入 CSS
 s|TextInput 
{
focusColor: #33CC00;
color : #343434;
font-weight : normal;
font-family: Helvetica ;
font-size : 12;

}

我的表格
<s:Form x="0" y="94" id="foPerso" width="100%" height="100%" 
includeInLayout="true" includeIn="tb1"
backgroundColor="#FFFFF">

<s:layout>
<s:FormLayout gap="3" paddingLeft="0"/>

</s:layout>



<s:HGroup width="100%" gap="3" horizontalAlign="left" resizeMode="noScale"
verticalAlign="baseline" >


<s:DropDownList id="cbQualite" dataProvider="{DP_PAT_CIVIL}"
selectedItem="{getSelectedItem(DP_PAT_CIVIL, objectPatient.paQualPatient)}"
change="objectPatient.paQualPatient = event.currentTarget.selectedItem.label"/>

<s:FormItem label="Nom" >
<s:TextInput id="fdNom" width="200"
text="@{objectPatient.paNomU}"

/>
</s:FormItem>
<s:FormItem label="Prénom" >
<s:TextInput id="fdPrenom" width="200" text="@{objectPatient.paPrenom}"/>
</s:FormItem>
<s:DropDownList id="cbDossier1" dataProvider="{DP_PAT_DOS1}" width="118" height="22" tabIndex="3"
change="objectPatient.paQualPatient = event.currentTarget.selectedItem.label"
/>

<s:FormItem label="" >
<s:TextInput id="fDossier1" width="90" paddingRight="5" text="@{objectPatient.paDossier1}"/>
</s:FormItem>
</s:HGroup>

我的表单位于自定义 TitleWindow 组件上。

谢谢你的帮助

最佳答案

使用 TextInput tabindex 属性来操作 taborder。

关于apache-flex - Flex 文本输入焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6996429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com