<div id="newSwitchDialog">
        <span id="name"></span><br /><br />
        <table>
            <tbody>
                <tr>
                    <td>Effective Date: </td>
                    <td><input type="text" id="startDate" /><br /></td>
                </tr>
                <tr>
                    <td>End Date: </td>
                    <td><input type="text" id="endDate" /></td>
                </tr>
            </tbody>
        </table>
    </div>

When I open this dialog via a click event:

$('#yup').live('click', function () {
            $('#name').text($('#selectedSponsorName').text());
            $("#newSwitchDialog").dialog('open');
        });

The datepicker automatically pops open for the first input. How do I make it not do that? Only option I found was to set it to open on a button click, but I couldn't find any autoOpen sort of thing.

Thanks.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Try setting the tabindex attribute on the fields containing the datepicker widget to -1:

<input type="text" id="startDate" tabindex="-1" />

(same for endDate)

Before: http://jsfiddle.net/NzfwD/

After: http://jsfiddle.net/pyJUR/

link|improve this answer
THat did it. Thanks! – slandau Oct 28 '11 at 20:41
That saved my time.Thanks a lot – bhargav Mar 5 at 11:35
feedback

Your Answer

 
or
required, but never shown

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