asp.net 如何使用在同一GridView RSS中radcombobox的“Onclientsideselectedindexchanged”上触发的javascript函数在GridView中查找文本框

1l5u6lss  于 2022-12-05  发布在  .NET
关注(0)|答案(1)|浏览(159)

我在GridView的ItemTemplate中有两个控件,一个是TextBox,另一个是radcombobox。我想做的是当radcombobox的事件onclientsideselectedindexchanges被激发时。我想用JavaScript在客户端显示/隐藏TextBox。
这样做的基本目的是避免回发以显示将DataBound到数据库的TextBox。
如果不能在客户端进行,请在服务器端提出一些替代方案。

cgvd09ve

cgvd09ve1#

在我的示例中,我有一个带有模板字段的GridView,它包含一个DropDown菜单和一个TextBox。JavaScript中的OnLoad事件将TextBox的显示样式设置为"none"。在GridView的OnRowDataBound事件中设置DropDown的OnChange事件,并调用JavaScript函数将TextBox的显示样式设置为所需的样式。
在我的示例中,仅当DropDown的选定索引为"1"时才显示TextBox。
我已经在我的代码中完成了这一切-请参考:网格视图ID="GridView1"

<Columns>
    <asp:TemplateField HeaderText="Order Status">
        <ItemTemplate>
           <asp:DropDownList ID="ddlOrderStatus" runat="server" Width="104px" ToolTip="Select order status">
            </asp:DropDownList><br />
             <asp:TextBox ID="txtShipTrackNo" runat="server" 
      Width="100px" Text='<%# Eval("sct_order_docket_id") %>'></asp:TextBox>
</ItemTemplate>
    </asp:TemplateField>
</Columns>
<script type="text/javascript">
var TargetBaseControl = null;
window.onload = function() {
    try {
    //get target base control.
    TargetBaseControl = document.getElementById('<%= this.GridView1.ClientID %>');
    for (var rowId = 1; rowId < TargetBaseControl.rows.length; ++rowId) {
    var txtShip = TargetBaseControl.rows[rowId].cells[0].getElementsByTagName("input")[0];
    txtShip.style.display = "none";
        }
    }
    catch (err) {
        TargetBaseControl = null;
    }
}

function selectCheck(rowid) 
{
     TargetBaseControl = document.getElementById('<%= this.GridView1.ClientID %>');
     var ddlStatus = TargetBaseControl.rows[rowid].cells[0].getElementsByTagName("select")[0];
     var txtShip = TargetBaseControl.rows[rowid].cells[0].getElementsByTagName("input")[0];
     txtShip.style.display = "none";
     if (ddlStatus.selectedIndex == '1') {
         txtShip.style.display = "block";
     }         
}
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        DropDownList ddlStatus = (DropDownList)e.Row.FindControl("ddlOrderStatus");
        string strFunc = string.Format("return selectCheck('{0}')", e.Row.RowIndex + 1);  
        ddlStatus.Attributes.Add("onchange", strFunc);
    }
}

相关问题