在我开始描述我的问题之前:感谢您花时间阅读本文!
我正在尝试编写一个基本的事件日历。用户应该能够创建事件和更新事件参数。如果单击现有事件,则将使用 jquery 对话框打开并显示每个事件参数的可编辑文本字段。现在到目前为止,这工作正常。唯一的问题是,一旦手动更改并保存了任何参数,文本字段就不再接受对值的任何进一步修改。这些通常应该在对话框打开之前设置为单击事件的参数值。
我已经尝试通过stackoverflows serch 函数和谷歌找到我的问题的答案。我尝试了很多我发现的东西,比如使用对话框创建参数并将其设置为一个函数,该函数将事件参数分配给输入字段,或者每次在对话框打开之前动态创建表单代码。似乎没有任何帮助。
我想我错过了我的问题的一个要点。
我正在使用 jquery-ui 对话框表单模板的“fullcalendar”JQuery-Plugin 和代码片段。(fullcalendar: http://arshaw.com/fullcalendar/ )
(jquery dialog-form: http://jqueryui.com/dialog/#modal-form )
非常感谢您阅读本文所花费的时间和精力。
以下是我的代码的一部分:
---Initialisation of fullcalendar----
eventClick: function (event, element) {
var id = $( "#id" ),
title = $( "#title" ),
allFields = $( [] ).add( id ).add( title );
$( "#dialog-form" ).dialog
({
autoOpen: false,
height: 320,
width: 350,
modal: true,
close: function()
{
allFields.attr( "value", "" );
},
buttons: {
"Update Event": function()
{
var bValid = true;
// To-Do: Entry Check Logic
if ( bValid )
{
event.title=$("#title").val();
$('#calendar').fullCalendar('updateEvent', event);
$( this ).dialog( "close" );
}
},
Cancel: function()
{
$(this).dialog( "close" );
}
}
});
$("#id").attr("value",event._id);
$("#title").attr("value",event.title);
$( "#dialog-form" ).dialog( "open" );
}
});
});
----Some Css----
</head>
<body >
<div id='calendar'></div>
<div class="lightness" id="dialog-form" title="Parameter">
<p class="validateTips">All form fields are required.</p>
<form>
<fieldset id="beforeSubmit">
<label for="id">Id</label>
<input type="text" name="id" id="id" />
<label for="title">Title</label>
<input type="text" name="title" id="title" value="" />
</fieldset>
</form>
</div>
</body>
</html>