FineUI 官方论坛

标题: 关于 RowDataBound 事件 [打印本页]

作者: xiayj    时间: 2012-12-17 10:22
标题: 关于 RowDataBound 事件
protected void gridPriceVer_RowDataBound(object sender, ExtAspNet.GridRowEventArgs e)
        {
string state = gridPriceVer.DataKeys[e.RowIndex][1].ToString();
System.Web.UI.WebControls.LinkButton link = (System.Web.UI.WebControls.LinkButton)gridPriceVer.Rows[e.RowIndex].FindControl("id1");
            System.Web.UI.WebControls.LinkButton link1 = (System.Web.UI.WebControls.LinkButton)gridPriceVer.Rows[e.RowIndex].FindControl("id2");

            if (state == "0")
            {
                link.Enabled = false;
                link1.Enabled = true;
            }
            else
            {
                link.Enabled = true;
                link1.Enabled = false;
            }
}
<ext:TemplateField HeaderText="状态启用" Width="60px" TextAlign="Center" ToolTip="启用" >
                                <ItemTemplate>
                                    <aspinkButton ID="id1" runat="server" Text="启用" ="Action1"></aspinkButton>CommandName
                            </ItemTemplate></ext:TemplateField>
                           
                            <ext:TemplateField HeaderText="状态停用"  Width="60px" TextAlign="Center" ToolTip="停用">
                             <ItemTemplate>
                                <aspinkButton ID="id2" runat="server" Text="停用" CommandName="Action2" ></aspinkButton>
                               </ItemTemplate></ext:TemplateField>


这样可以正常 显示 但CommandName 这个命令不执行
作者: xiayj    时间: 2012-12-17 10:23
<extinkButtonField  ColumnID="id1"  CommandName="Action1" HeaderText="状态启用" Width="60px" ToolTip="启用" TextAlign="Center" ConfirmText="确定要启用吗?" Text="启用"/>
                            <extinkButtonField  ColumnID="id2" CommandName="Action2" HeaderText="状态停用" ToolTip="停用" Width="60px" TextAlign="Center" ConfirmText="确定要停用吗?"  Text="停用"/>

protected void gridPriceVer_RowDataBound(object sender, ExtAspNet.GridRowEventArgs e)
        { string state = gridPriceVer.DataKeys[e.RowIndex][1].ToString();
            ExtAspNet.LinkButtonField link = (ExtAspNet.LinkButtonField)gridPriceVer.FindColumn("id1");
            ExtAspNet.LinkButtonField link1 = (ExtAspNet.LinkButtonField)gridPriceVer.FindColumn("id2");if (state == "0")
            {
                link.Enabled = false;
                link1.Enabled = true;
            }
            else
            {
                link.Enabled = true;
                link1.Enabled = false;
            }
http://priv.hiphotos.baidu.com/a ... 4a69f3df8dcd300767f
但这样显示有不对了 麻烦各位帮忙看看
作者: xiayj    时间: 2012-12-17 10:24

作者: 一個人の旋律    时间: 2012-12-17 14:59
啥东东啊 哥不会
作者: xiayj    时间: 2012-12-17 15:52
一個人の旋律 发表于 2012-12-17 14:59
啥东东啊 哥不会

会你妹 已经搞定了
作者: apoul    时间: 2012-12-17 16:28
可以说一下怎么解决吗?我也在纠结这种问题...




欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/) Powered by Discuz! X3.4