Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. Datagrid paging

Datagrid paging

Scheduled Pinned Locked Moved ASP.NET
helpquestion
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    ruifernandes24
    wrote on last edited by
    #1

    Hi! I have a datagrid with paging that works fine. The problem is that I'm using filters (DataViews) and when the data is filtered, the page numbering is not refresh. Is there anyway to work this around? Thanks.

    T 1 Reply Last reply
    0
    • R ruifernandes24

      Hi! I have a datagrid with paging that works fine. The problem is that I'm using filters (DataViews) and when the data is filtered, the page numbering is not refresh. Is there anyway to work this around? Thanks.

      T Offline
      T Offline
      truonghongquan
      wrote on last edited by
      #2

      This is my code for Refresh data: '---------------------------- Dim myView as Dataview Dim myDS as Dataset Sub Binddata(ByVal SortExpression As String) myView = New DataView(myDs.Tables(0)) myView.Sort = SortExpression Me.myDataGrid.DataSource = myView Me.myDataGrid.DataBind() End Sub Public Sub myDataGrid_PageChanged(ByVal sender As Object, ByVal e As DataGridPageChangedEventArgs) MyDataGrid.CurrentPageIndex = e.NewPageIndex 'choice field to filter Dim field_filter as string="CustomerID" Binddata(field_filter) End Sub '------------ In HTML page '--------- Hope everything in the garden is lovely.;P

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups