博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ScrollGridView 标题不变化 内容变化
阅读量:6767 次
发布时间:2019-06-26

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

<script type="text/javascript">

function fixHead() {
var grid = document.getElementById("<%=GridView1.ClientID%>");
var grid2 = grid.cloneNode(true)
for (i = grid2.rows.length - 1; i > 0; i--)
grid2.deleteRow(i)
grid.deleteRow(0)
divHead.appendChild(grid2)
}
window.onload = fixHead
</script>

 

<div id="divHead" style="width: 420px">

</div>
<div style="overflow: scroll; width: 420px; height: 150px">

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="BulletinID"

EmptyDataText="没有可显示的数据记录。" OnRowDataBound="GridView1_RowDataBound" CellPadding="4"
ForeColor="#333333" GridLines="None">

  </asp:GridView>

style="overflow: scroll; width: 420px; height: 150px">

 </div>

 

 

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)

{
if (e.Row.RowType == DataControlRowType.DataRow) //如果是数据行
{
string content = e.Row.Cells[2].Text;
//已设置公告内容列的宽度是20
//给公告内容列添加word-break属性
e.Row.Cells[2].Style.Add("word-break", "break-all");
}
}

转载于:https://www.cnblogs.com/Yellowshorts/archive/2013/01/19/2867819.html

你可能感兴趣的文章
Linux常用命令~新手必知
查看>>
06-课堂问题总结归纳
查看>>
1009. 说反话 (20)
查看>>
css之position相对定位和绝对定位
查看>>
CSS - 盒子模型(下)
查看>>
Java温故而知新(7)Object类及其方法讲解
查看>>
在linux下PHP和Mysql环境搞事情
查看>>
bzoj2287【POJ Challenge】消失之物*
查看>>
字符串加密
查看>>
存储的瓶颈(5)
查看>>
nio原理/netty简单应用
查看>>
Vue.js 系列教程 1:渲染,指令,事件
查看>>
mysql 使用 FIND_IN_SET 来查询数据
查看>>
设置鼠标悬停图片放大效果
查看>>
要做个P2P应用,先收集点相关基于UDP可靠传输的资料
查看>>
jps & ps
查看>>
dtoj#4212. 小X爱旅行(travel)
查看>>
makefile学习笔记
查看>>
EF--DB First
查看>>
[你必须知道的.NET] 品味类型---从通用类型系统开始
查看>>