[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Kush Murod
I'll upload a sample as quick as possible --Do you have a sample page?

[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Kush Murod
Hi Mike, my form has got only type=file elements so I just did a test and discovered that as long as I have type=file elements in my form it doesn't work properly my guess is something goes wrong when when inserting form that has got type=file into blockUI maybe a bug? --Kush

[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Mike Alsup
Do you have a sample page? actually that is exactly what I am doing, I have checked already as you said, if moved the form into blockUI :( this is really weird behaviour I must say

[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Kush Murod
actually that is exactly what I am doing, I have checked already as you said, if moved the form into blockUI :( this is really weird behaviour I must say Mike Alsup wrote: Kush, When you do this: $.blockUI(form) the plugin adds your form to the blockUI message element. This means the for

[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Mike Alsup
Kush, When you do this: $.blockUI(form) the plugin adds your form to the blockUI message element. This means the form is implicitly removed from the DOM and then reinserted in a different position. Try binding the form after you block. Maybe something like: $.blockUI(form); $(form).ajaxFor

[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Kush Murod
Also note when use xxx.block(form) form submits ok Kush Murod wrote: I am placing a form into blockUI like so $.blockUI(form) and then attaching form plugin like so .ajaxForm(options); Form pluging works perfect as long as it is not used with BlockUI, but as soon as you insert it into BlockUI