对话和日期选择器的jQuery

时间:2012-09-07 10:21:55

标签: jquery-ui

$(function(){
                // Dialog
                $('#dialog').dialog({
                autoOpen: false,
                width: 600,
                buttons: {
                    "Ok": function() {
                        $(this).dialog("close");
                    },
                    "Cancel": function() {
                        $(this).dialog("close");
                    }
                }
            });

            // Dialog Link
            $('#dialog_link').click(function(){
                $('#dialog').dialog('open');
                return false;
            });

            //hover states on the static widgets
            $('#dialog_link, ul#icons li').hover(
                function() { $(this).addClass('ui-state-hover'); },
                function() { $(this).removeClass('ui-state-hover'); }
            );

        });

我使用对话框jquery,我想使用datepicker 它显示了对话框的外观.....那就是问题......

    <div id="dialog" title="Find Patient">
      <p>
      <table style="table-layout: fixed; width: 550px;">
        <tr>
          <td><label class="form-item-label form-item-label-right">Patient Id :</label> </td>
            <td><input type="text" name="byId" id="byId" style="width: 90%"  /></td>
           <td><a class="button" href="#"><span>Find</span></a></td>
        </tr>
        <tr>
          <td><label class="form-item-label form-item-label-right">Patient`s Name :</label></td>
            <td><input type="text" name="byName" id="byName" style="width: 90%"/></td>
            <td><a class="button" href="#"><span>Find</span></a></td>
        </tr>
        <tr>
            <td></td>
            <td><input type="text" id="dob" name="dob" style="width: 90%"></td>
            <td><a class="button" href="#"><span>Find</span></a></td>
        </tr>
        </table>
      </p>
    </div>

当我在对话框中的表的最后一行使用datepicker Jquery时 加载我的html页面Datepicker首先加载到页面上

1 个答案:

答案 0 :(得分:2)

我不知道这是否是你的解决方案,但如果你倾向于使用Jquery日期选择器,你应该直接在加载mabye而不是焦点上将它添加到元素中,尝试这一点时,无论如何都会在关注文本框时附加它。注意代码行$('#dob').datepicker();

$(function () {
    // Dialog
    $('#dialog').dialog({
        autoOpen: false,
        width: 600,
        buttons: {
            "Ok": function () {
                $(this).dialog("close");
            },
            "Cancel": function () {
                $(this).dialog("close");
            }
        }
    });

    $('#dob').datepicker();

    // Dialog Link
    $('#dialog_link').click(function () {
        $('#dialog').dialog('open');
        return false;
    });

    //hover states on the static widgets
    $('#dialog_link, ul#icons li').hover(
            function () { $(this).addClass('ui-state-hover'); },
            function () { $(this).removeClass('ui-state-hover'); }
        );

});