[CLOSED] Edit Event on Combo in Column

  1. #1

    [CLOSED] Edit Event on Combo in Column

    Hello
    I am looking for an EDIT event that is activated as soon as i click. The COMPLETE event only fires after it tab out.
    Please let me know the best solution.
    Thanks,
    Zev.

                    Ext.Net.Column column = new Ext.Net.Column();
    
    
                    column.Width = 48;
                    ComboBox cb = new ComboBox();
                    cb.StoreID = "dsfdsf";
                    cb.ValueField = "id";
                    cb.DisplayField = "description";
                    cb.Editable = true;
                    cb.QueryMode = DataLoadMode.Local;
                    cb.ListConfig = new BoundList();
                    cb.ListConfig.Tpl = new XTemplate();
                    sb = sb.Append(@"<SOME TEMPLATE>");
                    cb.ListConfig.MinWidth = 90;
                    cb.ListConfig.MaxWidth = 200;
                    cb.ListConfig.Tpl.Html = sb.ToString();
    
    
                    column.Editor.Add(cb);
                    column.EditorOptions.Listeners.BeforeStartEdit.Fn = "verifyData";
                    column.EditorOptions.Listeners.Complete.Handler = "validateSomething();";
    Last edited by fabricio.murta; Nov 15, 2016 at 4:05 AM.
  2. #2
    Hello Zev!

    Have you tried the StartEdit event? Is the BeforeStartEdit event not firing at all? Maybe useful, you can try the EditorOptions.Listeners.Focus or maybe the combo box self Focus event. There's also the FocusEnter event that may be useful.

    Hope this helps!
    Fabrício Murta
    Developer & Support Expert
  3. #3
    Hello! It's been more than 7 days since last post and no feedback from you. Do you still need help on this issue? If no feedback in more 7 business days, we'll be closing this thread. This won't prevent you from posting follow-ups afterwards, though.
    Fabrício Murta
    Developer & Support Expert
  4. #4
    you can close. i think i resolved. i just saw your response due to spam guard.
    /Z
  5. #5
    Thanks for the feedback, let us know if you find out you didn't solve it in the end. We're marking as closed for now but don't hesitate on posting a follow-up if you need more help here!
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. Replies: 6
    Last Post: Mar 24, 2014, 7:03 AM
  2. [CLOSED] tree column when edit a column in the gridpanel
    By hdsoso in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: May 20, 2013, 3:59 AM
  3. Replies: 1
    Last Post: Jun 28, 2012, 9:39 PM
  4. combo edit problem in 0.8 version
    By Dinesh.T in forum 1.x Help
    Replies: 2
    Last Post: Jul 22, 2009, 10:15 AM
  5. Replies: 0
    Last Post: Jun 15, 2009, 8:47 AM

Posting Permissions