Suspected Bug - FieldTrigger IconCls Disappears on click and Subsequent Hovers

  1. #1

    Suspected Bug - FieldTrigger IconCls Disappears on click and Subsequent Hovers

    Hello,
    I have added a FieldTrigger to my TextField which uses the
    IconCls
    property. It was all created in code behind as follows
    		public Ext.Net.TextField TextFieldForUserName
    		{
    			get
    			{
    				try
    				{
    					Ext.Net.TextField oTextField
    						= new Ext.Net.TextField
    						{
    							LabelAlign = Ext.Net.LabelAlign.Top ,
    
    							MinWidth = 260 ,
    
    							FieldLabel = "User Name" ,
    
    							InputType = Ext.Net.InputType.Text ,
    
    							StandardVtype
    								= Ext.Net.ValidationType.AlphaNum ,
    
    							VtypeText = "This field is required." ,
    
    							PaddingSpec = "20 20 20 20"
    						};
    
    					Ext.Net.FieldTrigger oFieldTrigger
    						= new Ext.Net.FieldTrigger
    						{
    							IconCls = Ext.Net.ResourceManager.GetIconClassName ( Ext.Net.Icon.Information ),
    
    							QTip = "This is information."
    
    
    						};
    
    					oTextField.Triggers.Add ( oFieldTrigger );
    
    					return oTextField;
    				}
    				catch ( System.Exception ex )
    				{
    					System.Diagnostics.Debug.Fail ( ex.Message );
    
    					throw ex;
    				}
    			}
    		}
    Now when i click on the "TriggerField" or anywhere in the containing TextField, the icon disappears and it continues to disappear on subsequent hovers. I have posted a sample application to illustrate the issue at...https://drive.google.com/open?id=0B7...2IwQjJMbnZacGM

    It does not look like anyone is responding to this but i noticed that the icon seems to disappear when the TextField has focus and the mouse hovers over the icon. This disappearing icon behavior stops once the TextField loses focus.
    Last edited by edip; Nov 08, 2017 at 6:10 PM. Reason: More Information

Similar Threads

  1. Replies: 10
    Last Post: Sep 19, 2017, 6:36 AM
  2. Controls disappears on click
    By anil420anil420@gmail.com in forum 1.x Help
    Replies: 1
    Last Post: Apr 12, 2012, 5:55 AM
  3. Replies: 11
    Last Post: Feb 08, 2012, 8:18 AM
  4. Replies: 3
    Last Post: May 05, 2011, 9:06 PM
  5. [CLOSED] FieldTrigger custom IconCls bug?
    By geodan in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Aug 05, 2010, 7:39 AM

Tags for this Thread

Posting Permissions