2017-03-01 5 views
0

make comboboxトリガーは無効/非表示か、読み取り専用かはどのプロパティですか?あなたの興味をお持ちいただきありがとうございます 私のコンボボックスはあります。私は多分それが誰かのために役に立つでしょう解決策を見つけたComboboxトリガーは、ext.netから無効/非表示に設定されています

<ext:ComboBox runat="server" ID="cboStorageHouse" MinChars="0" LabelWidth="150" FieldLabel="Ambar" 
               MaxHeight="22" DisplayField="Name" ValueField="ID" ForceSelection="False"> 
               <Listeners> 
               </Listeners> 
               <Store> 
                <ext:Store runat="server" ID="strStorageHouse" AutoDecode="True"> 
                 <Model> 
                  <ext:Model runat="server" ID="mdlStorageHouseList" IDProperty="ID"> 
                   <Fields> 
                    <ext:ModelField Name="ID" Type="Int" /> 
                    <ext:ModelField Name="Name" Type="String" /> 
                   </Fields> 
                  </ext:Model> 
                 </Model> 
                </ext:Store> 
               </Store> 
              </ext:ComboBox> 

答えて

0

こんにちはすべて、

HideBaseTrigger="true" 

このコンボボックスのプロパティは私の問題を解決しました。

関連する問題