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
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