Yes, 2.2 is very old, go ahead and upgrade to a nightly.
Announcement
Collapse
No announcement yet.
X
-
Originally posted by IsomorphicYes, 2.2 is very old, go ahead and upgrade to a nightly.
Is it possible that you can send me a small test case of the bare minimum and the data your entering so I can test it with the exact same case?
The testcase I submitted also had the same issue.
More information:
I'm running this from MyEclipse IDE in development mode, browser is FF 3.6.12
Comment
-
Ok we see the problem.
If you replace this:
Code:Object start = startKeycodeDate.getValue(); if(start != null) { tmp.setAttribute("startdt", start); }
Code:Date start = (Date) startKeycodeDate.getValue(); if(start != null) { tmp.setAttribute("startdt", start); }
Basically you need to call ListGridRecord.setAttribute(String attr, Date value);, not ListGridRecord.setAttribute(String attr, Object value);
Comment
-
Originally posted by IsomorphicOk we see the problem.
If you replace this:
Code:Object start = startKeycodeDate.getValue(); if(start != null) { tmp.setAttribute("startdt", start); }
Code:Date start = (Date) startKeycodeDate.getValue(); if(start != null) { tmp.setAttribute("startdt", start); }
Basically you need to call ListGridRecord.setAttribute(String attr, Date value);, not ListGridRecord.setAttribute(String attr, Object value);
This worked thank you!
Comment
Comment