Hi All
I have been going through the classes we have developed and sharing back with the community some of them that I think will be useful to others. These components have been tested in ext-3.2.1.
Here is: Ext.ux.form.TimeFieldPlus
an extended timefield that allows additional values to be plugged into it
Code:
/**
* @author Will Ferrer, Ethan Brooks
* @copyright (c) 2012, Intellectual Property Private Equity Group
* @licensee 2012 developed under license for Switchsoft LLC http://www.switchsoft.com a "Direct response telephony company" as part of it's "VOIP Call distribution, ROI analysis platform, call recording, and IVR for inbound and outbound sales" and Run the Business Systems LLC a "Technology development investment group" as part of it's "PHP, Javascript rapid application development framework and MySQL analysis tools"
* @license licensed under the terms of
* the Open Source LGPL 3.0 license. Commercial use is permitted to the extent
* that the code/component(s) do NOT become part of another Open
Source or Commercially
* licensed development library or toolkit without explicit permission.
* <p>License details: <a href="http://www.gnu.org/licenses/lgpl.html"
* target="_blank">http://www.gnu.org/licenses/lgpl.html</a></p>
* We are pretty nice just ask. We want to meet our licensees
*/
/**
* @class TimeFieldPlus
* @extends Ext.form.TimeField
* an extended timefield that allows additional values to be plugged into it
* @constructor
* @param {Object} config The config object
* @xtype ux-form-timefieldplus
*/
Ext.ns('Ext.ux.form');
Ext.ux.form.TimeFieldPlus = Ext.extend(Ext.form.TimeField, {
/**
* @cfg {Array} additionalValues
* extra values to put in the time field. Defaults to [].
*/
additionalValues : [],
// @private
generateStore: function(initial){
var min = this.minValue || new Date(this.initDate).clearTime(),
max = this.maxValue || new Date(this.initDate).clearTime().add('mi', (24 * 60) - 1),
times = [];
while(min <= max){
times.push(min.dateFormat(this.format));
min = min.add('mi', this.increment);
}
times = times.concat(this.additionalValues);
this.bindStore(times, initial);
},
});
Ext.reg('ux-form-timefieldplus', Ext.ux.form.TimeFieldPlus);
Best regards
Will Ferrer (Run the Business)