Float flexvelden weer als number naar Excel

svn path=/Website/branches/v5.4.4/; revision=24290
This commit is contained in:
Jos Groot Lipman
2015-02-25 17:21:22 +00:00
parent 46544680f5
commit d9f66d5f85

View File

@@ -559,7 +559,7 @@ function flexValue(oRsFlex, showProperties)
}
// Indien de waarde van het kenmerk numeriek is, dan juiste format tonen (punt of komma)
else if (oRsFlex("kenmerktype").value == "N" && oRsFlex("decimalen").value > 0)
flexValue = ResultsetTable.formatValue(parseFloat(flexValue), "float", oRsFlex("decimalen").value);
flexValue = ResultsetTable.formatValue(parseFloat(flexValue), { datatype: "float", decimals: oRsFlex("decimalen").value});
}
if ((isPrinting || showProperties) && flexValue != "")