gpt4 book ai didi

c# - RadGrid,dropDown SelectedIndexChanged 事件在 asp FormView 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 15:36:48 27 4
gpt4 key购买 nike

我的网页中有一个RadGrid,其中有4个字段:
1)公司列表(下拉列表)
2)金额(文本框)
3) 备注(文本框)

公司下拉列表下的数据如下:
TX - 需要 0% 的税
GRE - 需要 11% 的税
EP - 需要 0% 的税
BL - 需要 6% 的税
TL - 需要 0% 的税

要求 1:

在更改 Dropdown 值时,同时“添加新记录”并且当“编辑”记录时,“金额”和“备注”文本框变为空。

为此,我尝试放入“DropDown_SelectedIndexChanged”事件代码但是由于我的 RadGrid 在 asp:FormView 中,所以我的页面从不回发我从 RadGrid 中重新选择项目,代码不起作用

要求 2:

如果 Dropdown 在所选项目中有 0%(text),则“Amount”文本框应该在文本框中使用 0.00 值禁用。

为此,我尝试了以下代码:

protected void rggst_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridEditableItem && e.Item.IsInEditMode)
{
GridEditableItem item = e.Item as GridEditableItem;

DropDownList list = item.FindControl("ddlCompany") as DropDownList;
list.DataTextField = "TaxDescription";
list.DataValueField = "TaxId";
list.DataSource = IPRRequest.DLTaxCode(CorporateGroupId);
list.DataBind();

if (list.Items.FindByValue("0%"))
{
if (e.Item is GridEditFormInsertItem)
{
GridEditFormInsertItem insertItem = (GridEditFormInsertItem)e.Item;
TextBox txt = (TextBox)insertItem["Amount"].Controls[0];
txt.Text = "0.00";
txt.Enabled = false;
}
}

}
}

但每次我都遇到以下错误:
无法将类型“System.Web.UI.WebControls.ListItem”隐式转换为“bool”

下面是我用于 RadGrid 的 HTML 和 C# 代码:

<asp:FormView ID="fvIPRForm" runat="server" DefaultMode="Insert" DataKeyNames="RequestID" DataSourceID="odsIPRForm" EnableModelValidation="True" OnItemInserting="fvIPRForm_ItemInserting" OnDataBound="fvIPRForm_DataBound" OnItemUpdating="fvIPRForm_Updating" OnItemCommand="fvIPRForm_ItemCommand">
<InsertItemTemplate>
<asp:Panel ID="pnlApprover" runat="server" Visible="true">
<telerik:RadMultiPage ID="RadMultiPage3" runat="server" SelectedIndex="0" Width="100%">
<telerik:RadPageView ID="RadPageView1" runat="server" Width="100%">
<telerik:RadAjaxPanel ID="Main" runat="server">
<telerik:RadGrid ID="RGGST" runat="server" AutoGenerateColumns="false"
ShowStatusBar="true" EnableEmbeddedSkins="true" Skin="Outlook" ShowFooter="True"
OnItemDataBound="rggst_ItemDataBound"
OnInsertCommand="rggst_InsertCommand" OnUpdateCommand="rggst_UpdateCommand"
OnDeleteCommand="rggst_DeleteCommand" OnNeedDataSource= "rggst_NeedDataSource">
<mastertableview commanditemdisplay="Top" autogeneratecolumns="false" datakeynames="Amount"
insertitempageindexaction="ShowItemOnCurrentPage" ShowFooter="True" >
<CommandItemSettings AddNewRecordText="New" />
<Columns>
<telerik:GridEditCommandColumn UniqueName="imagebutton1" ButtonType="ImageButton"></telerik:GridEditCommandColumn>
<telerik:GridTemplateColumn UniqueName="Company" HeaderText="Company">
<ItemTemplate>
<asp:Label ID="lblCompany" Text='<%# Eval("Company") %>' runat="server"></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList ID="ddlCompany" runat="server"/>
</EditItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn aggregate="SUM" DataField="Amount" HeaderText="Amount" FooterAggregateFormatString="Total : {0:###,##0.00}"
UniqueName="Amount" SortExpression="Amount" DataFormatString="{0:n}"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Remark" HeaderText="Remark"
UniqueName="Remark" SortExpression="Remark" maxlength ="30"></telerik:GridBoundColumn>
<telerik:GridButtonColumn ConfirmText="Delete this Tax Code?" ConfirmDialogType="RadWindow"
ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" ConfirmDialogHeight="160px" ConfirmDialogWidth="250px">
</telerik:GridButtonColumn>
</Columns>
<EditFormSettings>
<EditColumn ButtonType="ImageButton" />
</EditFormSettings>
<PagerStyle AlwaysVisible="True" PageSizeControlType="RadComboBox" />
</mastertableview>
</telerik:RadGrid>
</telerik:RadAjaxPanel>
</telerik:RadPageView>
</telerik:RadMultiPage>
</asp:Panel>
</InsertItemTemplate>
<EditItemTemplate>
//same RadGrid in this section
</EditItemTemplate>
<ItemTemplate>
//same RadGrid in this section
</ItemTemplate>
</asp:FormView>

这是我为要求 1 尝试的代码:

protected void ddlTaxCodes1_SelectedIndexChanged(object sender, EventArgs e)
{
DropDownList taxCodesList = (DropDownList)sender;
GridEditableItem item = (GridEditableItem)taxCodesList.NamingContainer;

string grossAmountTxt = (item["LIGrossAmt"].Controls[0] as TextBox).Text;
string TaxAmt = (item["LITaxAmt"].Controls[0] as TextBox).Text;
string TaxableAmt = (item["LITaxableAmt"].Controls[0] as TextBox).Text;
string Description = (item["LIDescription"].Controls[0] as TextBox).Text;

grossAmountTxt = "";
TaxAmt = "";
TaxableAmt = "";
Description = "";
}

请让我知道我在代码中犯了什么错误。
请注意,我是 Telerik 的新手。提前致谢。

最佳答案

下面是我为我的要求创建的示例代码,并且可以很好地满足上述要求。
此外,asp:FormView 不会影响 SelectdIndexChanged 事件代码,一切正常。

protected void ddlTaxCodes1_SelectedIndexChanged(object sender, EventArgs e)
{
if (ddlAcCode.SelectedValue != null || ddlAcCode.SelectedValue != "")
{
ddlAcCode.Enabled = false;

string selItem = ddlAcCode.SelectedItem.Text;

if (selItem.Contains("0%"))
{
txtAmount.Text = "0.00";
txtAmount.Enabled = false;

txtRemark.Text = "";
}
else
{
txtAmount.Text = "";
txtRemark.Text = "";
}
}
}

关于c# - RadGrid,dropDown SelectedIndexChanged 事件在 asp FormView 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31645834/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com