Search Result

Collapse
3 results in 0.0041 seconds.
Keywords
Members
Tags
paging
  •  

  • Jason Kibble
    started a topic Limit in jQuery/DOM/Browser of 65540

    Limit in jQuery/DOM/Browser of 65540

    I am looking at jQuery as an alternative to an ASP.net Gridview for use in paging data to reduce database calls (I looked into ObjectDataSourc es as an alternative, but it seemed to take longer than the default paging due to the need to run the Row_Number function on each row before selecting the rows needed).

    I am using the plugin found here: http://plugins.jquery.com/project/pagination

    The dataset I am trying to load...
    See more | Go to post

  • alBatoool
    started a topic How can I do Paging in my websites ?

    How can I do Paging in my websites ?

    Hi ,

    I am using C# & asp.net in programming , i have problem when display data from tables of DB ,
    I am displaying content like this :
    Code:
     while (mySqlDataReader.Read())
            {
    // News is id of div which declared in source .
                News.[B]InnerHtml [/B]+= " <div>" +"<h4>"+mySqlDataReader["NewsTitle"].ToString()+ 
     "<a href=NewsDetails.aspx?ID="
    ...
    See more | Go to post

  • ally
    started a topic hiding columns in Gridview with paging enabled

    hiding columns in Gridview with paging enabled

    Hi,

    I am programmaticall y binding gridview to a datatable. I want to hide 2 columns. I can be done by adding code in RowCreated event of gridview like

    e.Row.Cells[0].Visible = false;
    e.Row.Cells[5].Visible = false;

    but after that paging is not working.
    I tried another way by using gridview's column.Visible property
    but its giving error
    Index was out of range. Must be...
    See more | Go to post
Working...