I want to allow user to enter values which are multiple of 0.10 like below - 0.10, 0.20, 0.30....1.00, 1.10, 1.20...1.90 etc
I was checking below validation when user entering value in text box
amount % 0.10 == 0
is it correct ? or i need to round reminder ?