Extjs how to remove and undo list items from extjs combo box

HD..

I added the close icon to the combo box list items clicking on the cloes icon it show undo at the place of close icon for 3 seconds. After 3 seconds the list item should delete from the list. if usesr click on the undo it should not delete. here with i am attaching the code :

Ext.define('ezdi.view.SaveSearchComboboxView', {
    extend : 'Ext.form.field.ComboBox',
    alias : 'widget.saveSearchComboboxAlias',
    queryMode : 'local',
    id : 'saveSearchComboId',
    store : 'SaveSearchComboboxStore',
    emptyText : 'Saved Searches',
    displayField : 'searchQueryName',
    valueField : 'searchQueryId',
    lazyInit: false,
    listeners : {
        focus : function (combo) {
            combo.expand();
        }

    },
    listConfig : {
        getInnerTpl : function (displayField) {
            return '<span style="float:right;"><button width:16px height:16px; class="savedSearchRemove">x</button><button width:16px height:16px; style="display:none;" class="undoSearchRemove">Undo</button></span>{' + displayField + '}';
        }
    }

}); 

For better understanding i have attached clip here close icon with combo

dbrin
  1. To remove an item from a dropdown you simply remove the corresponding record from the store configured on the combobox.
  2. To delay execution of a task you can try a few different options. The easier one might be just the buffer option on the listener. The other is a delayed task runner. http://docs.sencha.com/extjs/4.1.3/#!/api/Ext.util.DelayedTask.
  3. To setup a listener from the combobox unto a subelement like a span in your case, you can use the delegate option on the listener config.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Extjs how to add close icon to the combo box

From Dev

Enlarge numuber of items in a EXTJS combo

From Dev

How to display html as text inside EXTJS combo box

From Dev

ExtJs 3.4 : Set tool tip for combo box

From Dev

Display combo box when checkbox is checked - Extjs

From Dev

Dynamic store not loading data in combo box extjs

From Dev

ExtJs 3.4 : Set tool tip for combo box

From Dev

dynamically change the combo box store in extjs

From Dev

Remove Items from Collection in a loop (Combo Box items)

From Dev

How to add items from combo box into array

From Dev

Extjs 4.2 combo - clear listeners from the BoundList

From Dev

How to add BOTH static values and records from a table as list items to a combo box in VBA

From Dev

How to send these items in the combo box

From Dev

Live Search Combo Box Isn't Working ExtJS 4.2.1

From Dev

ExtJS/MODx CMP: grid edits not saving to db, combo box not displaying

From Dev

Live Search Combo Box Isn't Working ExtJS 4.2.1

From Dev

Force extjs combo box to have a minimum of one item?

From Dev

ExtJS/MODx CMP: grid edits not saving to db, combo box not displaying

From Dev

How to put confimation box in extjs

From Dev

How to remove addClsOnOver listener ExtJS

From Dev

Extjs 4.2.1 Scroll to selection in combo drop down list

From Dev

ExtJS 5. How to remove rounded corners from fieldset border?

From Dev

ExtJS 5. How to remove rounded corners from fieldset border?

From Dev

How to add data table items in a combo box?

From Dev

How to list combo box data based on another combo box entry

From Dev

How to Open Drop down (combo items) of Combo Box on KeyDown Event?

From Dev

How to Open Drop down (combo items) of Combo Box on KeyDown Event?

From Dev

ExtJS 5 html in combo inputfield

From Dev

Extjs - Setvalue to numberfield inside combo

Related Related

  1. 1

    Extjs how to add close icon to the combo box

  2. 2

    Enlarge numuber of items in a EXTJS combo

  3. 3

    How to display html as text inside EXTJS combo box

  4. 4

    ExtJs 3.4 : Set tool tip for combo box

  5. 5

    Display combo box when checkbox is checked - Extjs

  6. 6

    Dynamic store not loading data in combo box extjs

  7. 7

    ExtJs 3.4 : Set tool tip for combo box

  8. 8

    dynamically change the combo box store in extjs

  9. 9

    Remove Items from Collection in a loop (Combo Box items)

  10. 10

    How to add items from combo box into array

  11. 11

    Extjs 4.2 combo - clear listeners from the BoundList

  12. 12

    How to add BOTH static values and records from a table as list items to a combo box in VBA

  13. 13

    How to send these items in the combo box

  14. 14

    Live Search Combo Box Isn't Working ExtJS 4.2.1

  15. 15

    ExtJS/MODx CMP: grid edits not saving to db, combo box not displaying

  16. 16

    Live Search Combo Box Isn't Working ExtJS 4.2.1

  17. 17

    Force extjs combo box to have a minimum of one item?

  18. 18

    ExtJS/MODx CMP: grid edits not saving to db, combo box not displaying

  19. 19

    How to put confimation box in extjs

  20. 20

    How to remove addClsOnOver listener ExtJS

  21. 21

    Extjs 4.2.1 Scroll to selection in combo drop down list

  22. 22

    ExtJS 5. How to remove rounded corners from fieldset border?

  23. 23

    ExtJS 5. How to remove rounded corners from fieldset border?

  24. 24

    How to add data table items in a combo box?

  25. 25

    How to list combo box data based on another combo box entry

  26. 26

    How to Open Drop down (combo items) of Combo Box on KeyDown Event?

  27. 27

    How to Open Drop down (combo items) of Combo Box on KeyDown Event?

  28. 28

    ExtJS 5 html in combo inputfield

  29. 29

    Extjs - Setvalue to numberfield inside combo

HotTag

Archive