greensun
16 Feb 2010, 8:15 AM
in DataField.js i got
case "bool":
cv = function(v){ return v === true || v === "true" || v == 1; };
break;
but in document there shows
The data type for conversion to displayable value if convert has not been specified. Possible values are
auto (Default, implies no conversion)
string
int
float
boolean
date
if should use the same type 'bool' or 'boolean'?
case "bool":
cv = function(v){ return v === true || v === "true" || v == 1; };
break;
but in document there shows
The data type for conversion to displayable value if convert has not been specified. Possible values are
auto (Default, implies no conversion)
string
int
float
boolean
date
if should use the same type 'bool' or 'boolean'?