Hi,
I am trying to display the value from a date field in myDocumentDemo customer control in computedField3. I am able to show text filed value but not date field.
e.g
this works :
var ac = myDoc.getDocument().getItemValueString("Ac_AccountName");
var rg = myDoc.getDocument().getItemValueString("ReportRegion");
return ac + " - " + rg;
myDoc.getDocument().getItemValueString("Ac_AccountName");
This does not work </div>
myDoc.getDocument().getItemValueString("ReportDate");
its show blank value.
I have also tried
myDoc.getDocument().getItemValueDate("ReportDate"); but get error 
i have also tried.
var dt:Date = myDoc.getDocument().getItemValueString("ReportDate");
dt.toString() ;
but no luck. 
Any suggestion!!!!!! 
thanks in advance
-Milind