I need to call a function within another function but my inner function is not calling. So, just want to know if I am doing it syntactically incorrectly.
{{localizeExt
"jsreport.footer.paging-numbers.prefix"
"./DeclarationForm/translations"
startPage=\[\*\*getPageNumber \*\*@index\] endPage=\[\*\*getTotalPages \*\*@root.$pdf.pages\]
}}
localizeExt is the function that takes 3 parameters.
- The first parameter is
"jsreport.footer.paging-numbers.prefix". - The second parameter is
"./DeclarationForm/translations". - The third parameters are
getPageNumberandgetTotalPagesand these are inner functions.
I tried with the return function and all the syntax but none of them are working.