I have a rails model that validates uniqueness of 2 form values. If these 2 values aren\'t unique the validation errors are shows and the \"submit\" button is changed to \"
Not positive about this, but you could try to add an attr_accessor to your model to hold whether or not the form has been submited once before.
just add
attr_accessor :submitted
to your model and check for it in your validations.