I have a jQuery dialog with a nested form inside of it. The form contains an input box and a submit button. When the dialog pops up I want the user to only be able to fill it out, and nothing else on the page. My css for that is done here:

.ui-widget-overlay 
{
    height: 1339px !important;
    width: 595px !important;
}

This works in allowing the user not to do anything else on the page, but the problem is that the input field is also disabled.

Any suggestions?

Edit: Here is how I make the dialog

function dialog(left, top) {

    //Creates a new dialog
    $('#dialog').dialog({
        position: [left, top],
        height: 90,
        width: 200,
        resizable: false,
        modal: true,
        title: '<span class="ui-icon ui-icon-home"></span> Enter Info',
    });
}

Here is the form I use for the dialog:

<!-- Store Location Dialog -->
<div id = "dialog">
    <form id = "info" method = "post" action = "Default.aspx" \> 
        <input type = "text" id = "changeDialogText" name = "changeLocation" /> <!-- THIS IS DISABLED -->
        <input type = "button" id = "changeDialogSubmit" value = ""  onclick = "function()"/> 
    </form>
</div>
link|improve this question

1  
Why not use modal: true? Why fiddle with the CSS? – Pekka Apr 20 '11 at 15:13
I do in my JS. Ill add that code in an edit – Peppered Lemons Apr 20 '11 at 15:14
@SsRide how are the fields disabled? Can you clarify? – Pekka Apr 20 '11 at 15:17
I added the code I used to make the dialog. Hopefully that can clears up some questions. Also the button is not disabled, just the input field – Peppered Lemons Apr 20 '11 at 15:19
if you're going to use a bunch of double quotes in your string, try wrapping it in single quotes. makes it a lot more readable and less error prone. – greg Apr 20 '11 at 15:43
show 4 more comments
feedback

1 Answer

up vote 0 down vote accepted

I figured out the issue. I had the z-index of my form lower then the z-index of the page. This caused issues with the dialog because it was unsure if the input was in the dialog or on page

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.