[CLOSED] [1.0] How to hide default trigger on ComboBox while allowing custom triggers to be visible

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    [CLOSED] [1.0] How to hide default trigger on ComboBox while allowing custom triggers to be visible

    I need to create a custom trigger for a ComboBox that I need to use INSTEAD of the built in button. Basically I want no button to expand the ComboBox, but want a custom button that will launch a popup for a different reason.

    I create the custom trigger like so in the Page Load event of the ComboBox:

                Dim trigger As New Ext.Net.FieldTrigger
    
                trigger.HideTrigger = False
                trigger.Icon = Ext.Net.TriggerIcon.Search
                trigger.Qtip = "Select User"
    
                Me.Triggers.Add(trigger)
    I have tried to set the "HideTrigger" property on the ComboBox itself but then all triggers are invisible. I need only the built in one to be invisible.

    This also needs to be done all in server side, no markup changes.
    Last edited by Daniil; Dec 02, 2010 at 4:10 PM. Reason: [CLOSED]

Similar Threads

  1. Replies: 0
    Last Post: Jul 27, 2012, 7:37 PM
  2. [CLOSED] ComboBox Hide Trigger
    By Adrian in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Mar 09, 2012, 10:36 AM
  3. [CLOSED] [1.0] Triggers not visible for a TriggerField
    By r_honey in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Apr 07, 2010, 10:19 AM
  4. [CLOSED] [1.0] TriggerField default trigger
    By randy85253 in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Feb 22, 2010, 6:06 AM
  5. Custom triggers with combo
    By jurel in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Dec 30, 2008, 10:47 AM

Posting Permissions