FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

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

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

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

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

搜索
查看: 2801|回复: 1
打印 上一主题 下一主题

f:Grid OnPageIndexChange监听方法

[复制链接]
跳转到指定楼层
楼主
发表于 2016-12-29 18:04:59 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
这是表格的设置信息
<f:Grid ID="Grid2" Title="表格" EnableCollapse="true" PageSize="5" ShowBorder="true"  ShowHeader="true" IsDatabasePaging="true" AllowPaging="true" ShowPagingMessage="true"
                                runat="server" EnableCheckBoxSelect="false" Width="1000px" Height="300" DataKeyNames="ID,city,county,street,village,reporter,reportUnit,operType,operTime,checked,remark"  
                                EnableRowDoubleClickEvent="true"  >


在OnPageIndexChange对应的AddressReportGrid_PageIndexChange方法里面的Grid2.pageIndex 一直为0,我是按照在线的代码的思路设计的。
主要的方法几乎没改动
public void AddressReportGrid_PageIndexChange(object sender, EventArgs e)
        {
            Alert.Show(Grid2.PageIndex.ToString());
            AddressReportGridBind();
        }
        public void AddressReportGridBind()
        {
            Grid2.RecordCount = reportTable.Rows.Count;
            DataTable table = GetReportGridPagedDataTable(Grid2.PageIndex, Grid2.PageSize);

            //绑定到Grid
            Grid2.DataSource = table;
            Grid2.DataBind();
        }
        public DataTable GetReportGridPagedDataTable(int pageIndex, int pageSize)
        {
            DataTable source = reportTable;

            DataTable paged = source.Clone();

            int rowbegin = pageIndex * pageSize;
            int rowend = (pageIndex + 1) * pageSize;
            if (rowend > source.Rows.Count)
            {
                rowend = source.Rows.Count;
            }

            for (int i = rowbegin; i < rowend; i++)
            {
                paged.ImportRow(source.Rows[i]);
            }

            return paged;
        }


沙发
 楼主| 发表于 2016-12-30 09:52:52 | 只看该作者
自己结贴,pageIndex属性不能随着控件的改变而改变,源码中有//Grid1.PageIndex = e.NewPageIndex;
的注释,我们要把事件得到的新pageindex赋值给Gird的pageIndex,这样分页就能正常实现了
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-1 21:20 , Processed in 0.042765 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

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