ここでは、「新規作成」オプション付きのドロップダウン選択があります。ユーザーが「Create New」を選択すると、Modal Popupウィンドウが表示されます。ドロップダウン選択に基づいてモーダルポップアップウィンドウを表示
これは、ドロップダウンコード
<asp:DropDownList ID="DropDownConfigFile" runat="server" CssClass="selectpicker">
<asp:ListItem Text="Create New" Value="1" ></asp:ListItem>
</asp:DropDownList>
であるここでは、
<script type="text/javascript">
$(function() {
//Attach click event to your Dropdownlist
$("#DropDownConfigFile").change(function() {
//Get the selected valu of dropdownlist
selection = $(this).val();
//If its one then show the dialog window. You can change this condition as per your need
if (selection == 1) {
//Show the modal window
$('#myModal').modal('show');
}
});
});
</script>
これは私のモーダルポップアップのデザインで、ポップアップウィンドウを開くためのjQueryです。
<div id="myModal" class="modal fade">
<asp:Panel ID="Panel1" runat="server" align="center" style = "display:contents ">
<table class="table table-hover small-text" id="tb" border="1">
<thead>
<tr>
<%--<td class="col-md-4">Index Position</td>--%>
<th style="BACKGROUND-COLOR: DarkGrey ">Index Position</th>
<th style="BACKGROUND-COLOR: DarkGrey ">Alpha-Numeric Scramble</th>
<th style="BACKGROUND-COLOR: DarkGrey ">Packed-Decimal Scramble</th>
<%--<td class="col-md-4">Type of Scramble</td>
<td class="col-md-4">Scrambling Required</td>--%>
</tr>
</thead>
</div>
残念ながら、私が「新規作成」を選択すると、ポップアップが開かれません。ここで何が問題なの?
ありがとうございます。今はうまくいきます。 – kiran
@kiran助けてくれて嬉しいです。 –
こんにちは、すべてうまく動作していますが、完全なウィンドウが表示されています。ポップアップウィンドウのサイズを小さくしたいウィンドウのサイズを減らす機会はありますか? – kiran