我的asp.net應用程序當前使用Telerik RadGrid顯示產品數據。在頁面頂部,我有一個包含4個不同類別的下拉列表。根據用戶對類別的選擇,網格中的複選框將被選中或不選中。該網站的1500種產品將始終顯示在網格中,它的複選框將會改變。下拉列表來填充複選框
例如:產品1位於類別A中,因此如果用戶在下拉列表中單擊了類別B,則產品1旁邊的複選框將被取消選中。要檢查的唯一方法是如果用戶更改下拉菜單以查看A類中的當前產品。
我無法解決如何處理此問題。例如,行if (ProductInMarket.Checked = true) throws an error saying
名稱ProductInMarket'在當前上下文中不存在。「我遇到的第二個問題是我無法弄清楚如何完成UpdateMarket方法。當你在編碼過程中吃午飯時會發生這種情況。 :/
這是我到目前爲止,我真的很感謝這裏的一些幫助。
<asp:DropDownList ID="MarketDropDownList" runat="server" AutoPostBack="true" OnSelectedIndexChanged="MarketDropDownList_SelectedIndexChanged" AppendDataBoundItems="true">
</asp:DropDownList>
<telerik:GridTemplateColumn AllowFiltering="true" HeaderText="Product ID" UniqueName="productid" ReadOnly="true">
<HeaderTemplate>
<asp:CheckBox ID="headerCheck" runat="server" onClick="javascript:SelectDeselectAllCheckboxes(this);" />
</HeaderTemplate>
<ItemTemplate>
<asp:Checkbox ID="ProductInMarket" runat="server" />
<asp:HiddenField runat="server" ID="ProductID" />
</ItemTemplate>
</telerik:GridTemplateColumn>
private void UpdateMarket(string MarketID)
{
//add products to market when checked
if (ProductInMarket.Checked = true)
{
string strConn = ConfigurationManager.ConnectionStrings["DBConnectingString"].ToString();
using (SqlConnection con = new SqlConnection(strConn))
{
using (SqlCommand cmd = new SqlCommand())
{
cmd.Connection = con;
cmd.CommandType = CommandType.Text;
cmd.CommandText = "UPDATE table SET ProductID = @ProductID WHERE MarketID = @MarketID";
}
}
}
}
所以你的下拉列表中真正做在網格中的1500行的大規模更新? –
不幸的是,是的。我寧願不這樣做,因爲它看起來會超級慢,但這是他們想要的。你有不同的建議嗎? – jlg
因此,下拉式選擇實際上只是一種便利,因此用戶不必檢查/取消選中1500次? –