博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SmartGridView 控件EmptyDataTemplate存在问题
阅读量:6820 次
发布时间:2019-06-26

本文共 3268 字,大约阅读时间需要 10 分钟。

项目中用到SmartGridView控件,当绑定数据数据时候,如果数据为空想让它显示“没有任何数据”,有数据则直接绑定。

源代码如下:

源代码
1   
3
4
5
6
" title="<%#Eval("CHINNAME") %>" 7 style="color:Blue; text-decoration: underline;"> 8 <%#((System.Data.DataRowView)Container.DataItem)["CHINNAME"] %> 9
10
11
12
13
14 <%#((System.Data.DataRowView)Container.DataItem)["CAS_NUMBER"]%>15
16
17
18
19
20 <%#((System.Data.DataRowView)Container.DataItem)["MOLFORMULA"]%>21
22
23
24
25
26 <%#((System.Data.DataRowView)Container.DataItem)["MOLWEIGHT"]%>27
28
29
30
31
32
33
34
35 36 37 中文名称38 39 40 CAS号41 42 43 分子式44 45 46 分子量47 48 49 50 51 没有任何数据52 53 54
55

在后台绑定数据

DataSet ds = whBll.CheckHistory(historyModel);        if (ds == null || ds.Tables.Count <= 0 || ds.Tables[0].Rows.Count <= 0)        {            DataTable dt = CreateTempTable();            grid_histroy.DataSource = dt;            grid_histroy.DataBind();        }        else        {            grid_histroy.DataSource = ds.Tables[0];            grid_histroy.DataBind();        }

运行页面后发现,页面样式存在一个问题。

用火狐调试,发现样式如下:

可以看到多了一行,如上图蓝色标出部分,

现在对代码修改:

更改后的代码
1   dt = CreateTempTable(); 2             DataRow dr = dt.NewRow(); 3             dr["trans_id"] = ""; 4             dr["location_id"] = ""; 5             dr["trans_date"] = ""; 6             dr["contents"] = ""; 7             dr["unit"] = ""; 8             dr["trans_by"] = ""; 9             dr["trans_mode"] = "";10             dt.Rows.Add(dr);11             this.grid_histroy.DataSource = dt;12             this.grid_histroy.DataBind();13             for (int i = 0; i < this.grid_histroy.Rows.Count; i++)14             {15                 for (int j = 1; j < this.grid_histroy.Columns.Count; j++)16                 {17                     this.grid_histroy.Rows[i].Cells.RemoveAt(1);18                 }19                 this.grid_histroy.Rows[i].Cells[0].ColumnSpan = 7;20                 this.grid_histroy.Rows[i].Cells[0].Text = "没有查询到历史信息";21             }

现在显示效果如下:

问题解决

转载地址:http://whazl.baihongyu.com/

你可能感兴趣的文章
zabbix-3.4 触发器
查看>>
[HNOI 2016] 树
查看>>
ribbon重试机制
查看>>
修改sql数据库文件 物理文件名称
查看>>
关于PHP 时区错误的问题
查看>>
ScriptManager.RegisterStartupScript失效的解决方案
查看>>
vsftpd 添加用户
查看>>
运行 python 脚本错误:urllib2.URLErroe:<urlopen error unknown url type : https>
查看>>
递归方法
查看>>
Sonar+maven+jenkins集成,Java代码走查
查看>>
浏览器渲染页过程描述
查看>>
js中点击返回顶部
查看>>
Gtest源码剖析:1.实现一个超级简单的测试框架xtest
查看>>
UEditor 是一套开源的在线HTML编辑器
查看>>
Linux 命令简介
查看>>
第三方模块的安装
查看>>
Terracotta中锁与性能的问题
查看>>
遇到Linux系统安装时窗口过大,按钮点不到,该怎么解决
查看>>
Xamarin开发Android笔记:TextView行间距设定
查看>>
js 判断输入是否为正整数
查看>>