I have an oracle apex interactive report. I have added an onclick event to some columns in my interactive report. Some of the cell values which I have passed as parameter to JS function have value starting with zero. This values are automatically converted to octal. This is my JS function call.
set_val(#SLIPNO#, #CODE# , #ACCNO#);
Where SLIPNO,CODE,ACCNO are column headers. The CODE has value starting with zero in some of the rows. When the cell value of CODE is 0112, I got the value 74 in JS function. How to solve this?