IgorSousaPT
IgorSousaPT

Reputation: 333

Yii CActiveForm submit on enter press

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.

Upvotes: 1

Views: 1008

Answers (1)

WeSee
WeSee

Reputation: 3762

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

 <input type="text" name="myField" autofocus />

Upvotes: 0

Related Questions