[CLOSED] [1.0] MultiCombo Field Trigger Icon=Ellipsis is showing Icon = Combo

  1. #1

    [CLOSED] [1.0] MultiCombo Field Trigger Icon=Ellipsis is showing Icon = Combo

    The Ellipsis Icon for the trigger field no longer shows the ellipsis icon. It now shows the standard drop down combo arrow. The Icon=SimpleEllipsis does work.

            <ext:MultiCombo runat="server" ID="testComboIcon">
                <Triggers>
                    <ext:FieldTrigger Icon="Ellipsis"  />
                    <ext:FieldTrigger Icon="SimpleEllipsis"  />
                </Triggers>
            </ext:MultiCombo>
    Last edited by geoffrey.mcgill; Jul 20, 2010 at 10:13 PM.
  2. #2
    Hello, bsnezw!

    It seems something wrong with the Icon property when it deals with "Ellipsis" value. Please use the IconCls property for this icon.
    <ext:MultiCombo runat="server" ID="MultiCombo1">
        <Triggers>
            <ext:FieldTrigger IconCls="x-form-ellipsis-trigger" />
            <ext:FieldTrigger Icon="SimpleEllipsis" />
        </Triggers>
    </ext:MultiCombo>
  3. #3
    yes, there does appear to be an issue. I'm investigating.
    Geoffrey McGill
    Founder
  4. #4
    ok, this has been fixed at SVN Revision #2935.

    Your original code sample should work after an SVN update.

    The default .Icon is now TriggerIcon.Combo.

    If the .Icon property is not set on the <ext:FieldTrigger>, the trigger icon will be the same as the <ext:MultiCombo>'s .TriggerIcon. By default this is "Combo".

    Here's a full sample demonstrating the scenario.

    Example

    <%@ Page Language="C#" %>
    
    <%@ Register assembly="Ext.Net" namespace="Ext.Net" tagprefix="ext" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Ext.NET Example</title>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            
            <ext:MultiCombo runat="server" TriggerIcon="Search">
                <Triggers>
                    <ext:FieldTrigger />
                    <ext:FieldTrigger Icon="Ellipsis" />
                    <ext:FieldTrigger Icon="SimpleEllipsis" />
                </Triggers>
            </ext:MultiCombo>
        </form>
    </body>
    </html>
    Thanks for pointing out the defect.

    Hope this helps.
    Geoffrey McGill
    Founder

Similar Threads

  1. [CLOSED] Icon in MultiCombo
    By RCM in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Oct 08, 2012, 8:07 AM
  2. [CLOSED] trigger icon in tab
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Nov 22, 2011, 7:32 PM
  3. Replies: 5
    Last Post: Aug 02, 2010, 8:44 AM
  4. Replies: 8
    Last Post: Aug 11, 2009, 4:14 PM
  5. Trigger Field Icon
    By Kaido in forum 1.x Help
    Replies: 7
    Last Post: Feb 02, 2009, 12:49 PM

Posting Permissions