render Math doesn't work
render Math doesn't work
mpm
Posts: 15Questions: 8Answers: 0
I need to return the: (0.85/0.985) * data,
Is this correct?
{"data":"Poids","render":function (data){return Math(data*0.85/0.985);}},
Thanks
This discussion has been closed.
Answers
I don't think you are using
Math
properly as it is not a function. Check out the Math doc.You should just be able to return your equation without Math.
{"data":"Poids","render":function (data){return data*0.85/0.985;}},
Kevin