動的に作成された要素は次のとおりです。
$("<div><form id='frmUsers'>Enter the Users you want to select seperated by comma:<br/><textarea rows='4' cols='50' name='txtUsers' id='txtUsers' class='text ui-widget-content ui-corner-all' ></textarea></form></div>").dialog({
autoOpen: true,
modal: true,
minWidth: 400,
title: 'Users Selection',
buttons: {
"Ok": function () {
}
$(this).dialog("close");
},
"Cancel": function () {
}
}
});
要素が作成され、それを正常に選択した後、その値は空のままです。設定できますが(ページには表示されませんが)、挿入した入力はどこにも反映されません。