Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
65
igCurrencyEditor without decimals
posted

Hi, I am using igCurrencyEditor and observed that always two decimal values are added by default.Is there any way I can no decimal values to igCurrencyEditor

Parents
No Data
Reply
  • 1100
    Verified Answer
    Offline posted

    Hello Jois,

    in order to achieve your scenario, you need to set "maxDecimls" and "minDecimals" options to 0.

    It would look like this:

    $("#tax").igCurrencyEditor({
            value: 600,
    		maxDecimals: 0,
    		minDecimals: 0
    });

    Please, let me know if you have any additional questions regarding this case!

    Best regards,
    Alexander Marinov

Children
No Data