- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Bootstrap 模式中有一个列表框和一个文本框。我需要使用列表框中选定的值更新文本框。我的问题是为了从列表框中获取选定的值,我需要进行自动回发。回发导致模式关闭。
这是完整的模态代码:
<div id="modalBillOLMapping" class="modal colored-header" style="display:none" >
<div class="md-content">
<div class="modal-header">
<button type="button" data-dismiss="modal" aria-hidden="true" class="close md-close"><i class="icon s7-close"></i></button>
<h3 class="modal-title">
<asp:Label ID="Label1" runat="server" Text="Field Mapping"></asp:Label>
</h3>
</div>
<div class="modal-body form" style="padding: 0px!important;">
<asp:UpdatePanel runat="server">
<ContentTemplate>
<div class="panel panel-alt3 panel-transparent">
<div class="panel-heading panel-heading-cg">
<button runat="server" type="button" id="btnSaveOLMapping" class="btn btn-alt3" onclick="javascript:CloseModal('modalBillOLMapping');" data-dismiss="modal" onserverclick="btnSaveMapping_ServerClick"><i class="icon s7-check"></i> Save</button>
<button type="button" class="btn btn-alt3 md-close"><i class="icon s7-close"></i> Cancel</button>
</div>
<div class="panel-body" style="height:300px">
<asp:UpdatePanel runat="server">
<ContentTemplate>
<div class="row" style="padding-bottom:5px">
<div class="col-xs-2">
<asp:Label runat="server" ID="lblBillOLMapName" CssClass="text-danger" ToolTip="Name of the current mapping">Map Name</asp:Label>
</div>
<div class="col-xs-4">
<asp:TextBox runat="server" ID="txtBillOLMapName"></asp:TextBox>
</div>
</div>
<table style="width:100%">
<thead>
<tr><th style="width:25%">Quickbooks Field</th>
<th style="width:25%">Charge Item Field</th>
<th style="width:25%">Static Value</th>
<th style="width:25%">Concatenated Value</th>
</tr>
</thead>
<tbody>
<tr>
<td><asp:Label runat="server" ID="lblBillOLDocNumber" CssClass="text-danger" ToolTip="Mandatory Field - Bill reference number" Width="200px">DocNumber</asp:Label></td>
<td><asp:DropDownList ID="ddlBillOLDocNumber" runat="server" AutoPostBack="false" Width="250px" ></asp:DropDownList></td>
<td><asp:TextBox runat="server" ID="txtStaticBillOLDocNumber" Height="25px" Width="250px"></asp:TextBox></td>
<td>
<div class="input-group">
<span class="input-addon input-group-btn">
<asp:TextBox ID="txtConBillOLDocNumber" runat="server" Width="250px" Height="22px" ClientIDMode="Static"></asp:TextBox>
<a class="btn btn-primary dropdown-toggle toggle-menu" data-toggle="dropdown" href="#" style="height:22px">
<i class="icon s7-angle-down" style="font-size:x-large"></i>
</a>
<ul class="dropdown-menu">
<li>
<asp:ListBox runat="server" ID="lbConBillOLDocNumber" ClientIDMode="Static"></asp:ListBox>
</li>
</ul>
</span>
</div>
</td>
</tr>
<tr>
<td><asp:Label runat="server" ID="lblBillOLTxnDate" ToolTip="The date of the bill, if you leave out of the mapping, the current date in Quickbooks Online will be used.">Transaction Date</asp:Label></td>
<td><asp:DropDownList ID="ddlBillOLTxnDate" runat="server" AutoPostBack="false" Width="250px"></asp:DropDownList></td>
<td><asp:TextBox runat="server" ID="txtStaticBillOLTxnDate" Width="250px" Height="22px"></asp:TextBox></td>
<td><div class="input-group" >
<span class="input-addon input-group-btn">
<asp:TextBox runat="server" ID ="txtConBillOLTxnDate" Width="250px" Height="22px"></asp:TextBox>
<a class="btn btn-primary dropdown-toggle toggle-menu" data-toggle="dropdown" href="#" style="height:22px">
<i class="icon s7-angle-down" style="font-size:x-large"></i>
</a>
<ul class="dropdown-menu">
<li>
<asp:ListBox runat="server" ID="lbConBillOLTxnDate" ClientIDMode="Static"></asp:ListBox>
</li>
</ul>
</span>
</div>
</td>
</tr>
<tr>
<td><asp:Label runat="server" ID="lblBillOLPrivateNote" ToolTip="User entered, organization-private note about the transaction. This note will not appear on the transaction records by default.">Private Note</asp:Label></td>
<td><asp:DropDownList ID="ddlBillOLPrivateNote" runat="server" AutoPostBack="false" Width="250px"></asp:DropDownList></td>
<td><asp:TextBox runat="server" ID="txtStaticBillOLPrivateNote" Width="250px" Height="22px"></asp:TextBox></td>
<td><div class="input-group">
<span class="input-addon input-group-btn">
<asp:TextBox runat="server" ID="txtConBillOLPrivateNote" Width="250px" Height="22px"></asp:TextBox>
<a class="btn btn-primary dropdown-toggle toggle-menu" data-toggle="dropdown" href="#" style="height:22px">
<i class="icon s7-angle-down" style="font-size:x-large"></i>
</a>
<ul class="dropdown-menu">
<li>
<asp:ListBox runat="server" ID="lbConBillOLPrivateNote"></asp:ListBox>
</li>
</ul>
</span>
</div></td>
</tr>
</tbody>
</table>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineDescription" ToolTip="Description for the expense line">Line Description</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineDescription" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineAmount" ToolTip="Amount of Expense">Line Amount</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineAmount" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineCustomerRef" ToolTip="Customer name associated with the expense">Line Customer Ref</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineCustomerRef" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineAccountClass" ToolTip="Class associated with the expense">Line Account Class</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineAccountClass" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineAccountRef" ToolTip="Name of the expense account">Line Account Ref</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineAccountRef" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLVendorRef" CssClass="text-warning" ToolTip="Mandatory - Full name of the vendor">Line Account Ref</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLVendorRef" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLAPAccount" ToolTip="The Accounts Payable account the purchase is credited">AP Account</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLAPAccount" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineItemDescription" ToolTip="A descriptive text field for the item">Line Item Description</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineItemDescription" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineItemAmount" CssClass="text-warning" ToolTip="Mandatory - The TOTAL item for the line item">Line Item Amount</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineItemAmount" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineItemRef" CssClass="text-warning" ToolTip="Mandatory - The name of the item purchased">Line Item Ref</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineItemRef" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineItemClass" ToolTip="Class for the line item">Line Item Class</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineItemClass" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineItemQty" ToolTip="Number of items ordered">Line Item Qty</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineItemQty" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineItemUnitPrice" ToolTip="Unit Price of the Item">Line Item Unit Price</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineItemUnitPrice" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
<div class="row" style="padding-bottom:5px">
<div class="col-x-6">
<asp:Label runat="server" ID="lblBillOLLineItemCustomer" ToolTip="Customer associated with the item purchase">Line Item Customer</asp:Label>
</div>
<div class="col-xs-6">
<asp:DropDownList ID="ddlBillOLLineItemCustomer" runat="server" AutoPostBack="false" Width="350px"></asp:DropDownList>
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</div>
</div>
这是我的代码:
protected void lbConBillOLDocNumber_SelectedIndexChanged(object sender, EventArgs e)
{
txtConBillOLDocNumber.Text = lbConBillOLDocNumber.SelectedItem.Text;
}
我需要将列表框中选定的文本值放入文本框中。我确实知道我得到了正确的值,因为上面代码中的警报显示了正确的值(但由于模式关闭,我不知道文本框是否正在更新。)我需要用所选值填充文本框的列表框,我需要模式保持打开状态。我意识到我的做法可能完全错误,因此欢迎提出任何改进建议。
最佳答案
您可以使用 AJAX UpdatePanel
(如下例所示)来消除每次回发时刷新整个页面的要求,并允许部分渲染您的案例的特定区域,它将是模态主体。
HTML
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<%-- AJAX UpdatePanel section--%>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
</asp:DropDownList>
<br />
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</form>
后台代码
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
// Bind DropDownList1 with some testing data
DropDownList1.Items.Add(new ListItem() { Text = "Item 001", Value = "1" });
DropDownList1.Items.Add(new ListItem() { Text = "Item 002", Value = "2" });
DropDownList1.Items.Add(new ListItem() { Text = "Item 003", Value = "3" });
DropDownList1.Items.Add(new ListItem() { Text = "Item 004", Value = "4" });
DropDownList1.Items.Add(new ListItem() { Text = "Item 005", Value = "5" });
}
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
TextBox1.Text = DropDownList1.SelectedValue;
}
关于javascript - 选择列表框后更新模态中的文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49742469/
是否有更快的算法来计算 (n! modulo m)。在每个乘法步骤都比减少更快。并且有没有比左右二元法更快的算法来计算 (a^p modulo m)。 这是我的代码:n!模数m ans=1 for(i
我有非常简单的代码循环遍历数组中的元素并检查是否index % 2 == 0。如果是这样,它应该改变颜色。 var e = document.getElementById("list").childN
让我简短一点。我正在计算 alert((Math.pow(7,35))%71) 但它给了我 61,而结果必须是 70。怎么了? 最佳答案 正如其他人之前提到的关于使用 Math.pow(7,35) 的
我试图弄清楚如何在汇编中计算模 10,所以我在 gcc 中编译了以下 c 代码,看看它想出了什么。 unsigned int i=999; unsigned int j=i%10; 令我惊讶的是我得到
例如使用以下输入: int num = -100 int divisor = 10 => -100 mod 10 = 0 (Edge-case: negative numbers as inpu
这个问题在这里已经有了答案: Random float number generation (14 个答案) 关闭 9 年前。 在 C++ 中,我希望得到一个随机 float 。据我所知,典型的随机
我试图找到潜在阶乘素数的除数(n!+-1 形式的数),因为我最近购买了 Skylake-X 工作站,我认为我可以使用 AVX512 指令提高一些速度。 算法简单,主要步骤是对同一个除数重复取模。主要是
我有一个保存角度(以度为单位)的变量,该角度可以是正值也可以是负值。我现在需要确保该数字仅在 0 到 360 之间。该数字是 double 。 执行此操作的好算法是什么?简单地执行角度 % 360 是
我有一个 UInt8 数组,我想计算 CheckSum8 模 256。如果字节总和小于 255,checkSum 函数返回正确的值。 例如 let bytes1 : [UInt8] = [1, 0xa
使用海湾合作委员会: printf("%i \n", -1 % (int)4); printf("%u \n", -1 % (unsigned int)4); 输出: -1 3 我可以跨平台依赖这种行
我无法理解代码中几行的含义。我最近开始学习 C++,并阅读了 Bjarne Stroustrup 的“编程:使用 C++ 的原理和实践”。第四章有个问题让我很困惑,所以我在网上搜索了一个解决方案以供引
我试图解决一个涉及大阶乘模质数的问题,并在另一个人的解决方案中发现了以下算法: long long factMod (long long n, long long p) { long long
我正在尝试计算 𝐹𝑛 模 𝑚,其中 𝑛 可能非常大:高达 10^18,𝐹𝑛 是第 n 个斐波那契数这是我的代码,它适用于小数字,但对于大数字,它会抛出 OutOfMemoryError 或
我有两个以 16 为模的循环整数,因此它们的值介于 0 和 15 之间。 我需要比较两个数字以确定 n_1 是否大于 n_0 n_1 > n_0 很明显,这个没有准确定义,所以我定义n_1如果小于前面
我一直在尝试使用 Java 处理一些更大的值,但遇到了一些我不理解的问题。出于某种原因,Java 似乎喜欢给我垃圾数据(尽管,我更可能告诉它给我垃圾数据) 这是一个片段,为清楚起见进行了编辑:
好吧,我今天做了一个小函数,它应该会生成一个随机字符串。 std::string randString(size_t length) { std::string randStr; fo
Ruby 的负数取模规则不明确。在 IRB 中: -7 % 3 == 2 应该是1!为什么? 最佳答案 因为 -7/3 在 Ruby 的整数除法语义下是 -3。 3*-3 是 -9,所以会留下 2
这个问题在这里已经有了答案: Calculating pow(a,b) mod n (14 个答案) 关闭 6 年前。 在 Javascript 中是否有获取大数模数的技巧。我用 modulo(7,
此代码使用公式 (a^x) % 101 检查值 a 是否唯一映射到值 1 到 100 local function f(a) found = {} bijective = true
在《Core Java Volume1》一书中有一条警告: CAUTION: The right-hand side argument of the shift operators is reduce
我是一名优秀的程序员,十分优秀!