Reputation: 11
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.
"jsreport.footer.paging-numbers.prefix"
."./DeclarationForm/translations"
.getPageNumber
and getTotalPages
and these are inner functions.I tried with the return function and all the syntax but none of them are working.
Upvotes: 1
Views: 56