2017-03-01 78 views
0

哪些屬性是使組合框觸發器禁用/隱藏或只讀?感謝您對我有興趣 我的組合框是;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" 

ComboBox的性能解決我的問題。