All Projects → ralscha → Ext.ux.form.trigger.Clear

ralscha / Ext.ux.form.trigger.Clear

Licence: Apache-2.0 license
Ext JS 5 trigger implementation. Adds a clear icon to textfields and comboboxes

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Ext.ux.form.trigger.Clear

Go Trigger
A Global event triggerer for golang. Defines functions as event with id string. Trigger the event anywhere from your project.
Stars: ✭ 212 (+863.64%)
Mutual labels:  trigger
DotNetKit.Wpf.AutoCompleteComboBox
ComboBox with filtering (auto-complete) for WPF
Stars: ✭ 66 (+200%)
Mutual labels:  combobox
wcm-io-wcm
Extensions for AEM authoring and AEM applications.
Stars: ✭ 17 (-22.73%)
Mutual labels:  extjs
Swipycell
Easy to use UITableViewCell implementing swiping to trigger actions.
Stars: ✭ 230 (+945.45%)
Mutual labels:  trigger
node-mocha-extjs
Framework for testing ExtJs applications
Stars: ✭ 19 (-13.64%)
Mutual labels:  extjs
extclassgenerator
Ext JS code generator. Creating model js classes from java classes
Stars: ✭ 14 (-36.36%)
Mutual labels:  extjs
Hooka
😎 A webhook server with zero coding
Stars: ✭ 180 (+718.18%)
Mutual labels:  trigger
ioBroker.smartcontrol
Control devices smarter: by grouping, including triggers like motion, opening window, etc. and set target devices accordingly
Stars: ✭ 20 (-9.09%)
Mutual labels:  trigger
vue-uix
Vue components based on the JUI components available in Vue.js
Stars: ✭ 15 (-31.82%)
Mutual labels:  combobox
SparkChamber
An event tracking framework for iOS
Stars: ✭ 44 (+100%)
Mutual labels:  trigger
Sundial
A Light-weight Job Scheduling Framework
Stars: ✭ 230 (+945.45%)
Mutual labels:  trigger
combobox-nav
Attach combobox navigation behavior to <input> or <textarea>.
Stars: ✭ 76 (+245.45%)
Mutual labels:  combobox
iOS-Geofence-Demo
Setup Geofences and get notifications when the device enters or leaves the geofence.
Stars: ✭ 71 (+222.73%)
Mutual labels:  trigger
Pull
🤖 Keep your forks up-to-date via automated PRs
Stars: ✭ 3,364 (+15190.91%)
Mutual labels:  trigger
Reactor
Reactor (for Vera and openLuup) is a Vera Home Automation plugin that provides advanced programmable logic.
Stars: ✭ 17 (-22.73%)
Mutual labels:  trigger
Easybutton
Arduino library for debouncing momentary contact switches, detect press, release, long press and sequences with event definitions and callbacks.
Stars: ✭ 187 (+750%)
Mutual labels:  trigger
choc-autocomplete
🏇 Autocomplete Component Package for Chakra UI
Stars: ✭ 286 (+1200%)
Mutual labels:  combobox
stateless
Finite State Machine porting from Stateless C#
Stars: ✭ 25 (+13.64%)
Mutual labels:  trigger
react-scroll-trigger
📜 React component that monitors scroll events to trigger callbacks when it enters, exits and progresses through the viewport. All callback include the progress and velocity of the scrolling, in the event you want to manipulate stuff based on those values.
Stars: ✭ 126 (+472.73%)
Mutual labels:  trigger
EntityFrameworkCore.Triggered
Triggers for EFCore. Respond to changes in your DbContext before and after they are committed to the database.
Stars: ✭ 361 (+1540.91%)
Mutual labels:  trigger

Deprecated: See this example for a better solution

Ext.ux.form.trigger.Clear

Ext JS 5 trigger implementation that adds a clear icon to textfields and comboboxes. A click on this icon clears the value of the field.

See an online demo: http://ralscha.github.io/Ext.ux.form.trigger.Clear

Examples:

  • Add a clear trigger to a textfield that is only visible when the field has a value/text

    { 
      xtype: 'textfield',
      name: 'aSimpleTextField',
      fieldLabel: 'A textfield',
      triggers: {
        clear: {
          type: 'clear'
        }
      }
    }
    
  • Add a clear trigger to a combobox that is always visible

    {
      xtype: 'combobox',
      displayField: 'label',
      valueField: 'value',
      store: store,
      triggers: {
        clear: {
          type: 'clear',
          hideWhenEmpty: false
        }
      }
    }
    
  • Add a clear trigger to a textfield that is only visible when the field has a value and the mouse hovers over the field

    {
      xtype: 'textfield',
      name: 'aSimpleTextField',
      fieldLabel: 'A textfield',
      triggers: {
        clear: {
          type: 'clear',
          hideWhenMouseOut: true
        }
      }
    }
    
  • Clear the value of the field with ESC

    {
      xtype: 'textfield',
      name: 'aSimpleTextField',
      fieldLabel: 'A textfield',
      triggers: {
        clear: {
          type: 'clear',
          clearOnEscape: true
        }
      }
    }  
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].