[CLOSED] MultiCombo checkbox problem

  1. #1

    [CLOSED] MultiCombo checkbox problem

    Hi,
    I have a MultiCombo and I define a trigger that clear selection; value is reset but checkboxs remain "checked"; here is the code:

    <ext:MultiCombo ID="cmbSiti" runat="server" DisplayField="descr" ValueField="sito" AllowBlank="true" Width="260" EmptyText="" TypeAhead="true" TriggerAction="All" ForceSelection="false" Mode="Local">
     <ListConfig MinWidth="500"></ListConfig>
     <Store>
         <ext:Store ID="stSiti" runat="server">
      <Fields>
          <ext:ModelField Name="sito"></ext:ModelField>
          <ext:ModelField Name="descr"></ext:ModelField>
      </Fields>                    
         </ext:Store>                                        
     </Store>
     <Triggers>                
         <ext:FieldTrigger Tag="Pulisci" Icon="Clear" Qtip="Pulisci"   />
     </Triggers>             
     <Listeners>                
         <TriggerClick Handler="if (tag === 'Pulisci') { Pulisci(this); }" />                    
     </Listeners>
     <ToolTips>
         <ext:ToolTip runat="server" ID="ttSiti" Html="">
      <Listeners>
          <Show Handler="showToolTip(this);"></Show>
      </Listeners>
         </ext:ToolTip>
     </ToolTips>
    </ext:MultiCombo>
    
    <script language="javascript">
     function showToolTip(toolTip) {
         if (Ext.getCmp("cont_Header_cmbSiti")) {
      siti = Ext.getCmp("cont_Header_cmbSiti").rawValue;
      toolTip.update(siti);
         }
     }
     function Pulisci(cmb) {
         cmb.clear();
         cmb.reset();
     }
    </script>
    Also I want to know if it is possible to "search" on DisplayField like combo: while I type a character, the list is filtering on the word typed (if exists corrispondence)

    many thanks
    Last edited by Daniil; Jun 03, 2013 at 2:32 PM. Reason: [CLOSED]
  2. #2
    Hi @PoloTheMonk,

    Thank you for the report. We are investigating.

    Quote Originally Posted by PoloTheMonk View Post
    Also I want to know if it is possible to "search" on DisplayField like combo: while I type a character, the list is filtering on the word typed (if exists corrispondence)
    Please follow:
    http://forums.ext.net/showthread.php?24985
  3. #3
    It has been fixed in the SVN trunk. Please update.
  4. #4
    Quote Originally Posted by Daniil View Post
    It has been fixed in the SVN trunk. Please update.
    I do it. Many thanks.

Similar Threads

  1. MULTICOMBO selecting problem...
    By antoreegan in forum 2.x Help
    Replies: 0
    Last Post: May 22, 2013, 6:10 AM
  2. [CLOSED] MultiCombo collapses on a CheckBox click in IE8.
    By Leonid_Veriga in forum 2.x Legacy Premium Help
    Replies: 5
    Last Post: Feb 18, 2013, 8:30 AM
  3. Replies: 1
    Last Post: Dec 04, 2012, 8:46 AM
  4. [1.0] MultiCombo Problem Selecting
    By koss in forum 1.x Help
    Replies: 4
    Last Post: Apr 15, 2010, 3:31 PM
  5. [CLOSED] Problem with checkbox due to SVN update
    By CSG in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Nov 25, 2009, 8:09 AM

Posting Permissions