Hi, i'm having some date picker problems on the following version
SmartClient_SC_SNAPSHOT-2010-08-28_LGPL
here is the JS:
isc.DynamicForm.create({
ID: "newOrderForm",
width: "100%",
fields: [
{
name: "entryDate",
title: "Entry Date",
type: "date",
useTextField: "true"
}
]
}
1. the date picker icon/image is not displaying. viewing the image url it refers to this:
http://localhost/isomorphic/skins/TreeFrog/images/controls/date_control.png
shouldn't it be gif instead of png?
2. when i choose a date, it displays what i chose:
08/29/2010
but sends out a different thing:
2010-08-28T16:00:00
how do i have it send what it displays, or how do i convert what it sends (server side) to what was originally picked?
SmartClient_SC_SNAPSHOT-2010-08-28_LGPL
here is the JS:
isc.DynamicForm.create({
ID: "newOrderForm",
width: "100%",
fields: [
{
name: "entryDate",
title: "Entry Date",
type: "date",
useTextField: "true"
}
]
}
1. the date picker icon/image is not displaying. viewing the image url it refers to this:
http://localhost/isomorphic/skins/TreeFrog/images/controls/date_control.png
shouldn't it be gif instead of png?
2. when i choose a date, it displays what i chose:
08/29/2010
but sends out a different thing:
2010-08-28T16:00:00
how do i have it send what it displays, or how do i convert what it sends (server side) to what was originally picked?
Comment