Browse Source

Couldn't edit in columns, assign date correctly

topic-sass
Jason Denney 11 years ago
parent
commit
de338276c0
  1. 10
      app/assets/javascripts/custom_netzke_helpers.js

10
app/assets/javascripts/custom_netzke_helpers.js

@ -140,7 +140,7 @@ Ext.define('Ext.ux.form.field.DateTime', {
mixins:{ mixins:{
field:'Ext.form.field.Field' field:'Ext.form.field.Field'
}, },
alias: 'widget.xdateampmtime', alias: 'widget.xdatetime',
//configurables //configurables
@ -320,9 +320,15 @@ Ext.define('Ext.ux.form.field.DateTime', {
}, },
setValue: function(value){ setValue: function(value){
if (Ext.isString(value)){ console.log("setValue: " + value);
if (Ext.isString(value) || Ext.isDate(value)){
if( Ext.isDate(value)){
dt = value;
}else{
dt = new Date(value); dt = new Date(value);
value = Ext.Date.parse(value, this.getFormat()); //this.dateTimeFormat value = Ext.Date.parse(value, this.getFormat()); //this.dateTimeFormat
}
this.dateField.setValue(value); this.dateField.setValue(value);
hour = Ext.Date.format(dt, 'g'); hour = Ext.Date.format(dt, 'g');

Loading…
Cancel
Save