FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

本论坛已关闭(禁止注册、发帖和回复)
请移步 三石和他的朋友们

FineUI首页 WebForms - MVC & Core - JavaScript 常见问题 - QQ群 - 十周年征文活动

FineUI(开源版) 下载源代码 - 下载空项目 - 获取ExtJS - 文档 在线示例 - 版本更新 - 捐赠作者 - 教程

升级到 ASP.NET Core 3.1,快、快、快! 全新ASP.NET Core,比WebForms还简单! 欢迎加入【三石和他的朋友们】(基础版下载)

搜索
查看: 2242|回复: 5
打印 上一主题 下一主题

关于 RowDataBound 事件

[复制链接]
跳转到指定楼层
楼主
发表于 2012-12-17 10:22:10 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
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 这个命令不执行
沙发
 楼主| 发表于 2012-12-17 10:23:48 | 只看该作者
<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
但这样显示有不对了 麻烦各位帮忙看看
板凳
 楼主| 发表于 2012-12-17 10:24:11 | 只看该作者
地板
发表于 2012-12-17 14:59:02 | 只看该作者
啥东东啊 哥不会
5#
 楼主| 发表于 2012-12-17 15:52:05 | 只看该作者
一個人の旋律 发表于 2012-12-17 14:59
啥东东啊 哥不会

会你妹 已经搞定了
6#
发表于 2012-12-17 16:28:52 | 只看该作者
可以说一下怎么解决吗?我也在纠结这种问题...
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|FineUI 官方论坛 ( 皖ICP备2021006167号-1 )

GMT+8, 2024-11-27 03:43 , Processed in 0.047872 second(s), 18 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表