Hi
We're development one application for serveral countries when the sources information are serveral external application and, in our database ,all amounts are stored in cent.
I'm usign BeforeProcessRowList event in List Page to change cent values in decimal values. source code are below
$data["AM_CUOTA_MES_SERV"]=$data["AM_CUOTA_MES_SERV"]/100;
$data["AM_CUOTA_MES_PAGO_APLAZADO"]=$data["AM_CUOTA_MES_PAGO_APLAZADO"]/100;
$data["AM_CUOTA_MES_TOTAL"]=$data["AM_CUOTA_MES_TOTAL"]/100;
In the list page, decimal values are showing rigth, but whe we edit then in "InLine Edir" mode, the value showed in text box is the database value (AM_CUOTA_MES_SERV) instead of transformed value (AM_CUOTA_MES_SERV/100)
Is there any way to do that?
Thanks
Jose A.