-
how to get the value of datefield
how to get the value of datefield
I've got a problem with the datefield
I use datefield.getValue(), but I've got this "Mon Nov 2 00:00:00 EST 2009" and I want "2009/11/02"
Can anybody help me?
-
Sencha User
Browse to the Date class in the docs and take a look at the format function.
-
Ext User
you got a day object
you got a day object
You got a date object. if you stop and read:
getValue() : DateReturns the current date value of the date field.
it does not matter the format you used. format is used for parsing the value from the triggerField(superclass).
try this...
var d=datefield.getValue();
var year = d.getFullYear();
var month= d.getMonth()+1;
var day = d.getDate();
alert(year+"/"+month+"/"+day);
Sencha is used by over two million developers. Join the community, wherever you’d like that community to be
or Join Us