Am having the model and added validation using Annotations. Validation was working fine till i updated to FireFox 30.0
Even my friend firefox browser renders the same code correctly.
[Range(-10000, 200000)]
[Integer] //From Annotaiton Extensions
public int? someint { get; set; }
In my View if have
@Html.TextBoxFor(model => model.someint) //validation works fine
@Html.EditorFor(model => model.someint) // validation not working (eg: if i enter any char like "eer" , no validaition is fired)
Is it just me or any body else facing it ? Any workarounds ?
But everything works in IE8 :)