or
							

// transactionAmount = 1000000000 and is stored in the field of a model// In the template definition I see this unexpected result:#: kendo.toString(get("transactionAmount"), "c") # // result: 1000000000// Smaller or hard-coded amounts work fine:#: kendo.toString(get("transactionAmount")/1000, "c") # // result: € 1.000.000,00#: kendo.toString(1000000000, "c") # // result: € 1.000.000.000,00<section data-role="layout" data-id="default" data-platform="ios">    <header data-role="header">        <div data-role="navbar">            <span data-role="view-title"></span>            <a data-role="backbutton" data-align="left">Back</a>        </div>    </header>    <!--View content will render here-->    <footer data-role="footer">        <div data-role="tabstrip">                         <a data-role="button" data-icon="organize" ref="">Secrets</a>            <a data-role="button" data-icon="compose" href="">Place a secret</a>            <a data-role="button" data-icon="contacts" href="">Profile</a>        </div>     </footer></section>