我想,当我双击卡片并从日历中选择一个日期时,将一个字符串值放入输入字段并创建一个动态复选框。然后,在关闭对话框并再次双击同一张卡后,我希望在此对话框中显示相同的值。后来,当我添加一张新卡时,我希望对话框为空。
我试过自己修理它,但不能。
HTML:
<!--Wrapper div-->
<div id="wrapper">
<!--Inbox list and button to add a card-->
<div id="inboxList" class="cellContainer">
<p style="display: inline">Inbox</p>
<!--Button to add a Card-->
<input type="button" id="AddCardBtn" value="+ Add a Card..."/> <hr class="fancy-line"/> <br/>
<!--Card div-->
<div id="userAddedCard"> <br/>
<div>
</div>
</div>
</div>
</div>
<!--Modal Dialog-->
<div id="modalDialog">
<form>
<label>Title</label>
<input type="text" id="customTextBox" value="some value"/>
<p>Date: <input type="text" id="datepicker" value="some date"/></p>
<input type="button" id="Getbtn" value="Get value"/> <hr/><br/>
<label>Add checkBox</label>
<br />
<div id="progressbar"></div>
<br />
<input type="text" id="checkBoxName" />
<input type="button" id="btnSaveCheckBox" value="_Ok" />
<br />
</form>
</div>
Jquery的:
$(function () {
// Click function to add a card
var $div = $('<div />').addClass('sortable-div');
$('<label>Title</label><br/>').appendTo($div);
$('<input/>', { "type": "text","class":"ctb"}).appendTo($div);
$('<input/>', { "type": "text","class":"date"}).appendTo($div);
var cnt =0,$currentTarget;
$('#AddCardBtn').click(function () {
var $newDiv = $div.clone(true);
cnt++;
$newDiv.prop("id","div"+cnt);
$('#userAddedCard').append($newDiv);
// alert($('#userAddedCard').find("div.sortable-div").length);
});
// Double click to open Modal Dialog Window
$('#userAddedCard').dblclick(function (e) {
$currentTarget = $(e.target);
$('#modalDialog').dialog({
modal: true,
height: 600,
width: 500,
position: 'center'
});
return false;
});
$("#datepicker").datepicker({showWeek:true, firstDay:1});
$("#Getbtn").on("click",function() {
var val = $("#customTextBox").val();
$currentTarget.find(".ctb").val(val);
$currentTarget.find(".date").val($("#datepicker").val() );
document.getElementById('customTextBox').value="";
document.getElementById('datepicker').value="";
$('.allcheckbox').remove();
$('#modalDialog').dialog("close");
});
// Add a new checkBox
$('#btnSaveCheckBox').click(function () {
addCheckbox($('#checkBoxName').val());
$('#checkBoxName').val("");
});
function addCheckbox(name) {
var container = $('#modalDialog');
var inputs = container.find('input');
var id = inputs.length + 1;
$('<input />', { type: 'checkbox', class: 'allcheckbox', id: 'cb' + id, value: name }).appendTo(container);
$('<label />', { 'for': 'cb' + id, class: 'allcheckbox', text: name }).appendTo(container);
$('<br/>').appendTo(container);
}
});
答案 0 :(得分:1)
在显示对话框之前,在dblclick
回调中添加此内容:
$('#modalDialog #customTextBox').val($currentTarget.children('.ctb').val());
$('#modalDialog #datepicker').val($currentTarget.children('.date').val());
此代码从所选卡中获取输入字段值,并将它们放入对话框输入字段中。
关于复选框,你必须将它们保存为javascript值并将它们附加到卡片元素,但我认为更改代码太难了(说实话它有点混乱)并让它工作。您应该实现model/view pattern以从数据(输入值和复选框标签)中分离视图(卡片html元素)。我建议您使用Backbone来实现这一目标吗?