1

I'm using Yii framework and I have a lot of CActiveForms. On some of them, when I click Enter it submits the form, on the others it doesn't submit.

Does anyone know what could be causing this?

Ps: I'm not using any code to prevent that the submition on Enter press.

udondan
  • 57,263
  • 20
  • 190
  • 175
IgorSousaPT
  • 323
  • 1
  • 2
  • 10
  • 1
    would you present some code? – Hearaman Jul 08 '13 at 12:24
  • 1
    Post Some code where you are getting the error – Ninad Jul 08 '13 at 13:05
  • Do you have submit button on all forms? Without code we can as well read from tea leaves. http://stackoverflow.com/questions/477691/submitting-a-form-by-pressing-enter-without-a-submit-button?rq=1 –  Jul 09 '13 at 07:39

1 Answers1

0

You can use the HTML5 autofocus attribute (works in all current browsers except IE8 and IE9).

 <input type="text" name="myField" autofocus />
WeSee
  • 3,158
  • 2
  • 30
  • 58