Sha256: 1ad01cd047c223d56994ee25c12e7ab42ab88ae3abc5d38b0293e271f96dc97e
Contents?: true
Size: 1.03 KB
Versions: 9
Compression:
Stored size: 1.03 KB
Contents
Ext.ns("Netzke.mixins.Basepack"); Ext.ns("Ext.ux.grid"); Ext.util.Format.mask = function(v){ return "********"; }; Ext.define('Ext.ux.form.TriCheckbox', { extend: 'Ext.form.field.ComboBox', alias: 'widget.tricheckbox', store: [[true, "Yes"], [false, "No"]], forceSelection: true }); // Fix race condition with Ext JS 5.1.0 (while testing) // The error was: "Ext.EventObject is undefined" // Looks like Ext.EventObject is a legacy artifact in Ext JS 5, as it can be found only twice in the whole code base, // so, it probably gets removed in one of the next releases. Ext.override(Ext.view.BoundList, { onHide: function() { var inputEl = this.pickerField.inputEl.dom; if (Ext.Element.getActiveElement() !== inputEl) { inputEl.focus(); } this.callParent(arguments); }, }); // Fix 2-digit precision in the numeric filter Ext.define('Ext.grid.filters.filter.Number', { override: 'Ext.grid.filters.filter.Number', getItemDefaults: function() { return Ext.apply(this.itemDefaults, { decimalPrecision: 10 }); } });
Version data entries
9 entries across 9 versions & 1 rubygems