`
yake2011
  • 浏览: 18969 次
最近访客 更多访客>>
社区版块
存档分类
最新评论

SPGridView: Adding paging to SharePoint when using custom data sources

 
阅读更多
原文链接

 

Part 2: Extending your SPGridview with paging controls

 

and add the event handler:

 

 

void oGrid_PageIndexChanging(object sender, GridViewPageEventArgs e)
        {
            oGrid.PageIndex = e.NewPageIndex;
            oGrid.DataBind();
        }

 

 

The extra lines around sorting are important if you enabled sorting on the list in Part 1. Adding the paging means CreateChildControls() could now fire on a postback without a subsequent call to oGrid_Sorting(). Depending on how you’re implementing state, this could mean the list switches back to being unsorted – giving the impression of duplicating or missing out entries if you sort before you page, so to speak.

Enjoy.

  • 大小: 22.3 KB
分享到:
评论

相关推荐

    SharePoint中一个简单的用SPGridView显示数据的webpart示例

    1. **SPGridView**: SPGridView是SharePoint自定义控件库中的一个强大控件,它是ASP.NET GridView的扩展,专为SharePoint设计。SPGridView提供了更方便的方式来绑定SharePoint列表数据,同时具备了内置的排序、分页...

    强大的SPGridView

    SPGridView是SharePoint环境中一个强大的数据展示控件,它是ASP.NET GridView控件的扩展,专为在SharePoint环境中提供更灵活的数据操作和定制化功能而设计。这个控件允许开发者以高度自定义的方式显示和操作...

    SPGridView能实现的效果

    SPGridView 是 SharePoint 2007 中的一个控件,它扩展了传统的 ASP.NET GridView 控件的功能,提供了更多用于数据展示和交互的特性。这个控件主要用于在 SharePoint 页面上展示和操作数据,通常是从数据库或其他数据...

    SPGridView绑定数据(排序,过滤,分组,分页,菜单)

    - SPGridView 不支持自动生成列,所以需手动创建并设置每列的 `HeaderText`、`DataField` 和 `SortExpression`。 - 开启排序功能:`SPGridView1.AllowSorting = true`。 5. **设置过滤字段** - 使用 `...

    SPGridView绑定数据(ObjectDataSource,SPDataSource)实例

    SPGridView绑定数据(ObjectDataSource,SPDataSource)实例。 说明ObjectDataSource,SPDataSource作为数据源的有点与缺点。。。 文档为office2010的。。

    QuickPart的部署以及用QuickPart包装用户控件到Moss sharepoint

    SPGridView是SharePoint对ASP.NET GridView的扩展,提供了与列表数据交互的更多功能,如与SharePoint列表的集成、权限控制等。开发者可能在这个用户控件中实现了特定的数据展示和操作逻辑。 总之,QuickPart是...

    微软webpart教程

    - 使用 `SPGridView` 控件来展示数据,可能包括从 SharePoint 数据源获取的数据。 ##### 3. Exercise 3 - Connecting WebParts - **情景描述**:此练习专注于创建具备连接功能的 WebPart,即一个 WebPart 可以从另...

Global site tag (gtag.js) - Google Analytics