Cant Post from a fancybox

I have a fancybox inside my form… i Cant Post from that fancybox…Submitbutton is not working…

It’s not the Yii, it’s the DOM.

Highly likely your fancybox has modified the DOM, so submit button now resides outside the form.

You can check it using HTML developer tools like firebug.

You have at least two options:

  1. use JS onclick handler to submit the form

  2. place <form> tags inside fancybox.

thank u very much Angel De La Noche,

JS onclick works…2nd option is not possible.