FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

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

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

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

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

搜索
查看: 1350|回复: 2
打印 上一主题 下一主题

Grid问题求教

[复制链接]
跳转到指定楼层
楼主
发表于 2014-2-28 08:35:19 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
前台:
<f:Grid ID="Grid1" ShowHeader="false" EnableFrame="true" EnableCollapse="true" Width="800px"
                        ShowBorder="true" runat="server" EnableCheckBoxSelect="True" DataKeyNames="Id"
                        PageSize="10" AllowPaging="true" IsDatabasePaging="true" OnPageIndexChange="Grid1_PageIndexChange"
                        OnRowCommand="Grid1_RowCommand" OnRowDataBound="Grid1_RowDataBound">
<Columns>
                            <f:RowNumberField EnablePagingNumber="true" Width="80px" HeaderText="序号" />
                            <f:RenderField Width="300px" DataField="Name" HeaderText="名称">
                            </f:RenderField>
<f:TemplateField ID="tfLocked">
                            <ItemTemplate>
                             <finkButtonField ColumnID="lockedField" TextAlign="Center" HeaderText="锁定状态" Icon="Lock" ToolTip="锁定" CommandName="LockStatus" />
                            </ItemTemplate>
                            </f:TemplateField>
                            <finkButtonField ColumnID="editField" TextAlign="Center" Icon="encil" ToolTip="编辑"
                                CommandName="Edit" Width="50px" HeaderText="编辑" />
                            <finkButtonField ColumnID="deleteField" TextAlign="Center" Icon="encilDelete"
                                ToolTip="删除" ConfirmText="确认要删除?" ConfirmTarget="Top" CommandName="Delete"
                                Width="50px" HeaderText="删除" />

                        </Columns>

</f:Grid>

后台:
protected void Grid1_RowDataBound(object sender, GridRowEventArgs e)
{
//根据ID查找LinkButtonField一直为空

FineUI.LinkButtonField lbf= row.FindControl("lockedField") as FineUI.LinkButtonField;

求教后台怎么用代码来改变前台LinkButtonField的相关属性,比如图标、ToolTip和CommandName

沙发
发表于 2014-2-28 11:57:03 | 只看该作者
  1. FineUI.LinkButtonField lbf= Grid1.FindControl("lockedField") as FineUI.LinkButtonField;
复制代码


应该是Grid1.FindControl。不是row.FindControl。
板凳
 楼主| 发表于 2014-3-8 11:58:16 | 只看该作者
asdfsdgd 发表于 2014-2-28 11:57
应该是Grid1.FindControl。不是row.FindControl。

谢谢,而且放在RowDataBound事件中也错了,应该放在PreRowDataBound里面
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-27 01:31 , Processed in 0.045208 second(s), 18 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

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