JQueryUI对话框大小
我是JQueryUI的新手,虽然我有一个对话框工作,但它不会以我想指定的大小打开。 为什么在定义对话框时设置宽度和高度不会影响对话框的初始大小? 我如何使它成为600px x 500像素?
这是定义对话框的div:
<div id="dialog-form" title="Create Appointment">
<form> . . . </form>
</div>
下面是使它对话的JavaScript:
$(function() {
$("#dialog-form").dialog({
autoOpen: false,
maxWidth:600,
maxHeight: 500,
width: 600,
height: 500,
modal: true,
buttons: {
"Create": function() {
$(this).dialog("close");
},
Cancel: function() {
$(this).dialog("close");
}
},
close: function() {
}
});
以及定义按钮以打开它的JavaScript:
$("#create-appt")
.button()
.click(function() {
$("#dialog-form").dialog("open");
});
});
编辑:
我现在看到了这个问题:除非我使用--app=...
命令行选项在Google Chrome中运行它,否则这种方法可以正常工作,因此它不会重新加载整个应用程序。
问题:为什么在定义对话框时设置宽度和高度不会影响对话框的初始大小?
答:它的确...你使用的浏览器和jQuery的版本。
我将上面的代码从上面剪切/粘贴到一个小样本中,并且它的工作非常完美......我在下面粘贴了全部样本,您可以在最后尝试它。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>jQuery UI Example Page</title>
<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.11.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.11.custom.min.js"> </script>
<script type="text/javascript">
$(document).ready(function () {
$(function() {
$("#dialog-form").dialog({
autoOpen: false,
maxWidth:600,
maxHeight: 500,
width: 600,
height: 500,
modal: true,
buttons: {
"Create": function() {
$(this).dialog("close");
},
Cancel: function() {
$(this).dialog("close");
}
},
close: function() {
}
});
});
$("#create-appt")
.button()
.click(function() {
$("#dialog-form").dialog("open");
});
});
</script>
</head>
<body>
<h1>test</h1>
<div id="dialog-form" title="Create Appointment">
<p> this is my test </p>
</div>
<input type="button" id="create-appt" value="test"/>
</body>
</html>
我不知道到底发生了什么,但是你可以改变一下你的代码,它会产生你期望的结果:
不要使用autoOpen,你可以在onclick事件中设置这些选项:
$("#create-appt")
.button()
.click(function() {
$("#dialog-form").dialog({width: 600,height:500});
});
我希望这有助于最好的问候,马塞洛Vismari
链接地址: http://www.djcxy.com/p/61465.html上一篇: JQueryUI Dialog Size
下一篇: Symfony CollectionType add data when building without entity