I am using auto numeric plugin for currency input fields.
@Html.TextBoxFor(m => m.Principal, new { @class = "form-control money", @required = "required", @data_parsley_min = "1", @data_parsley_errors_messages_disabled="" })
In the above field I am using class money on which autonumeric is applied. Now if I remove the money class parsley validation works but it does not work if autonumeric is applied. Please help me in this regard