ブートストラップ・モデル内で部分ビューをロードしようとしています。親ページには既存のフォームがあり、部分ビューには別のフォームがあるためです。フォーム内にフォームがあるため、フォームを1ページに配置することはできません。ブートストラップ・モーダル:部分的な表示がモーダル・ボディに表示されます
以下は親ページでは、私のチェックボックスで、それはモデルのダイアログが表示されます確認するとき:
<input type="checkbox" name="inputNewBornKMC" value="inputNewBornKMC" id="inputNewBornKMCCheckbox"> New Born
以下は親ページでモーダルダイアログです:JavaScriptで
<div Class="modal fade" id="inputNewBornKMC" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close modal-close-btn" data-dismiss="modal">×</button>
<h4 class="modal-title">Search Newborn's Mother</h4>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
@*<button type="button" class="btn btn-default" id="AddGP">Save changes</button>*@
</div>
</div> <!-- Modal content-->
</div>
</div> <!-- Modal -->
を、
$('#inputNewBornKMCCheckbox').on('change', function (e) {
var _this = $(this);
// if checked
if (_this.is(':checked')) {
$('#inputNewBornKMC').modal({
keyboard: false,
remote: '/controller/AddPartialRegistration'
}).show();
$('#inputNewBornKMCCheckbox').on('click', '.modal-link', function (e) {
e.preventDefault();
$(this).attr('data-target', '#inputNewBornKMC');
$(this).attr('data-toggle', 'modal');
});
}
actioを呼び出します:私は、モーダルダイアログをロードするために、次のコードを入れてn個の部分ビューに表示するコントローラで:_PartialRegistrationページで
public ActionResult AddPartialRegistration()
{
return PartialView("_PartialRegistration");
}
:
<div class="modal-body">
<form class="form-horizontal" id="frmSearchMother" role="form" >
Mother's MRN
<input type="text" class="form-control input-sm" id="popupMotherMRN" name="popupMotherMRN" />
IC/ID No
<input type="text" class="form-control input-sm" id="popupICNo" name="popupICNo" />
Mother's Name
<input type="text" class="form-control input-sm" id="popupMotherName" name="popupMotherName" />
<button type="button" class="btn btn-default" id="SearchMother" >Search</button>
</form>
<br />
<table cellpadding="0" cellspacing="0" border="0" class="table table-striped table-bordered" id="LoadMotherDetailsTable">
<thead>
<tr>
<th>No.</th>
<th>Mother's MRN</th>
<th>Mother's IC No</th>
<th>Mother's Name</th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
を私は人々が部分図を適用するさまざまな方法を試してみたが、どれも働いていません。モーダルダイアログのモーダルボディに部分ビューを挿入する方法は不明です。このダイアログは、チェックボックスをチェックすると表示されますが、モーダルボディに部分ビューをロードする方法は不明です。
ご協力いただければ幸いです。
を手助けしようとしているおかげでとにかく:)うえで、あなたの善意のために私はかなりアリア-labelledbyの機能が何であるかを理解していませんか?大切ですか? – Nurul
視覚障害者がスクリーンリーダーを使用し、自分のページで何が起こっているのかを知りたい場合は、重要です – JDro04