active questions tagged paging - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:16:20Z http://stackoverflow.com/feeds/tag/paging http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1481741/pagecontrol-optimization 1 PageControl Optimization Ken 2009-09-26T17:49:31Z 2009-12-21T17:34:43Z <p>I'm developing for iPhone, SDK 3.1. I have about 150 images that I need to display to the user for him to page through. I've copied the code from the PageControl sample from Apple but once I load it onto the iPhone the application crashes if I scroll through quickly. I tried to write some optimization to conserve memory but it doesn't help much. I was wondering if anyone could tell me whether my optimization needs improvement or if I have some other issue. The relevant code is below.</p> <p><code><pre></p> <p>// ReviewViewController.h @interface ReviewViewController : UIViewController {</p> <p>NSMutableArray *reviewArr; NSMutableArray *viewControllers; IBOutlet UIScrollView *scroller; BOOL dirty; NSInteger pageCount; }</p> <p>@property (retain, nonatomic) NSMutableArray *reviewArr; @property (retain, nonatomic) NSMutableArray *viewControllers; @property (assign, nonatomic) UIScrollView *scroller;</p> <p>//ReviewViewController.m</p> <p>-(void)clearScroller { NSArray *subviews = [[NSArray alloc] initWithArray:scroller.subviews]; for (UIView *subview in subviews) { //NSLog(@"DEBUG - view %d", subview.tag); [subview removeFromSuperview]; } [subviews release]; [scroller setContentOffset:CGPointMake(0,0) animated:NO]; }</p> <ul> <li><p>(void)initialize:(int)page { if([reviewArr count] == 0) { NSLog(@"No more cards on stack"); UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(20, 70, 420, 45)]; label.text = @"You have no review cards in your stack"; label.numberOfLines = 2; label.font = [UIFont systemFontOfSize:20]; [scroller addSubview:label]; [label release]; [back setHidden:YES]; [forward setHidden:YES]; [mathFactAction setHidden:YES]; return; } </p> <p>NSLog(@"Initializing..%d", page);</p> <p>[self setHeading]; [self clearScroller]; [mathFactAction setHidden:NO];</p> <p>NSMutableArray *controllers = [[NSMutableArray alloc] init]; for (unsigned i = 0; i &lt; reviewArr.count; i++) { [controllers addObject:[NSNull null]]; } self.viewControllers = controllers; [controllers release];</p> <p>// a page is the width of the scroll view scroller.pagingEnabled = YES; scroller.contentSize = CGSizeMake(scroller.frame.size.width * reviewArr.count, scroller.frame.size.height); scroller.showsHorizontalScrollIndicator = NO; scroller.showsVerticalScrollIndicator = NO; scroller.scrollsToTop = NO; scroller.delegate = self;</p> <p>// pages are created on demand // load the visible page // load the page on either side to avoid flashes when the user starts scrolling if(page > 0) { [self loadScrollViewWithPage:page - 1]; }</p> <p>[self loadScrollViewWithPage:page]; [self loadScrollViewWithPage:page + 1]; }</p></li> <li><p>(void)checkForDirtyPages { for (unsigned i = 0; i &lt; [self.viewControllers count]; i++) { if(i == pageCount-1) continue; else if(i == pageCount) continue; else if(i == pageCount+1) continue; else unloadPage:i; } } </p></li> <li><p>(void)unloadPages { dirty = FALSE; [self unloadPage:pageCount-3]; [self unloadPage:pageCount-4]; [self unloadPage:pageCount+3]; [self unloadPage:pageCount+4]; }</p></li> <li><p>(void)unloadPage:(int)page { if (page &lt; 0) return; if (page >= reviewArr.count) return;</p> <p>// replace the placeholder if necessary FactViewController *controller = [viewControllers objectAtIndex:page]; if ((NSNull *)controller != [NSNull null]) {</p> <p>/*NSArray *subviews = [[NSArray alloc] initWithArray:controller.view.subviews]; for (UIView *subview in subviews) { //NSLog(@"DEBUG - view %d", subview.tag); [subview removeFromSuperview]; } [subviews release]; */ // remove teh innerscroller from viewControllers to conserve memory [self.viewControllers replaceObjectAtIndex:page withObject:[NSNull null]]; } }</p></li> <li><p>(void)loadScrollViewWithPage:(int)page { if (page &lt; 0) return; if (page >= reviewArr.count) return;</p> <p>// replace the placeholder if necessary FactViewController *controller = [viewControllers objectAtIndex:page]; //UIScrollView *innerScroller = [self.viewControllers objectAtIndex:page]; if ((NSNull *)controller == [NSNull null]) { controller = [[FactViewController alloc] initWithReviewNumber:[reviewArr objectAtIndex:page]]; [self.viewControllers replaceObjectAtIndex:page withObject:controller]; [controller release]; }</p> <p>if (nil == controller.view.superview) { CGRect frame = scroller.frame; frame.origin.x = frame.size.width * page; frame.origin.y = 0; controller.view.frame = frame; [scroller addSubview:controller.view]; //[self unloadPages]; }</p></li> </ul> <p>}</p> <ul> <li><p>(void)scrollViewDidEndDecelerating:(UIScrollView *)sender { if(dirty) [self unloadPages]; //[self resetScroller:pageCount-1]; //[self resetScroller:pageCount+1]; }</p></li> <li><p>(void)scrollViewDidScroll:(UIScrollView *)sender { // We don't want a "feedback loop" between the UIPageControl and the scroll delegate in // which a scroll event generated from the user hitting the page control triggers updates from // the delegate method. We use a boolean to disable the delegate logic when the page control is used. // Switch the indicator when more than 50% of the previous/next page is visible CGFloat pageWidth = scroller.frame.size.width; int page = floor((scroller.contentOffset.x - pageWidth / 2) / pageWidth) + 1; // pageControl.currentPage = page;</p> <p>// load the visible page and the page on either side of it (to avoid flashes when the user starts scrolling) [self loadScrollViewWithPage:page - 1]; [self loadScrollViewWithPage:page]; [self loadScrollViewWithPage:page + 1];</p> <p>// if we are on a new page if(page != pageCount) { dirty = TRUE; pageCount = page; [self setHeading]; }</p> <p>// A possible optimization would be to unload the views+controllers which are no longer visible }</p></li> <li><p>(void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview // Release anything that's not essential, such as cached data [self checkForDirtyPages]; }</p></li> </ul> <p>// FactViewController.m</p> <p>@interface FactViewController : UIViewController { IBOutlet UIScrollView *scrollView; //IBOutlet UILabel *pageNumberLabel; NSInteger review_id; }</p> <p>@property (nonatomic, retain) UIView *scrollView; //@property (nonatomic, retain) UILabel *pageNumberLabel; @property (assign, nonatomic) NSInteger review_id;</p> <p>-(void)unloadImage; - (id)initWithReviewNumber:(NSNumber *)reviewNumber; - (int)getMathFactId;</p> <p>@end</p> <p>// Load the view nib and initialize the pageNumber ivar. - (id)initWithReviewNumber:(NSNumber *)reviewNumber { if (self = [super initWithNibName:@"FactViewController" bundle:nil]) { self.review_id = [reviewNumber intValue]; } return self; }</p> <ul> <li>(void)dealloc { //[pageNumberLabel release]; //[card release]; [scrollView release]; [super dealloc]; }</li> </ul> <p>// Set the label and background color when the view has finished loading. - (void)viewDidLoad { NSLog(@"(FactVC) view did load"); [self showImage]; [super viewDidLoad];</p> <p>}</p> <p>-(void)unloadImage { [scrollView release]; }</p> <p>-(void)showImage { NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init]; [numberFormatter setMinimumIntegerDigits:2]; NSLog(@"Loading image (%d)", self.review_id);</p> <p>NSString *img_file = [NSString stringWithFormat:@"%@", [numberFormatter stringForObjectValue:[NSNumber numberWithInt:self.review_id]]]; [numberFormatter release];</p> <p>NSString *fileLocation = [[NSBundle mainBundle] pathForResource:img_file ofType:@"gif"]; NSData *imageData = [NSData dataWithContentsOfFile:fileLocation];</p> <p>UIImage *image = [UIImage imageWithData:imageData];</p> <p>//UIImage *image = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:img_file ofType:@"gif"]]; UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; // inDirectory:@"Resources/questions"</p> <p>[scrollView addSubview:imageView]; [scrollView setContentSize:CGSizeMake(imageView.frame.size.width, imageView.frame.size.height)];</p> <p>[imageView release]; }</p> <p></code></pre></p> <p>Sorry this is so long, but I wanted to make sure it was all in there. Any ideas would be appreciated.</p> http://stackoverflow.com/questions/1935971/problem-with-telerik-radgrid-paging-and-updatepanel 0 Problem with Telerik RadGrid Paging and Updatepanel Erez 2009-12-20T14:24:01Z 2009-12-21T11:48:51Z <p>Hi, I've set a RadGrid with Paging into a simple asp.net UpdatePanel, and it caused a JavaScript exception.</p> <p>Does anyone familiar with that problem ? </p> http://stackoverflow.com/questions/1930842/asp-net-gridview-doesnt-display-my-pagertemplate 1 ASP.NET GridView doesn't display my PagerTemplate blahblah 2009-12-18T21:41:51Z 2009-12-19T17:03:30Z <p>I have the following code in my user control:</p> <pre><code>&lt;asp:LinqDataSource ID="myLinqDataSource" runat="server" AutoSort="true" ContextTypeName="MyDBContext" TableName="myTable" AutoPage="true" Select="new(Edited, Activity)" Where="UserID == 4" /&gt; &lt;asp:GridView ID="gvTable" runat="server" ShowHeader="true" PageSize="5" AllowPaging="true" AllowSorting="true" DataSourceID="myLinqDataSource" AutoGenerateColumns="false" OnRowDataBound="GridView_DataBound"&gt; &lt;Columns&gt; &lt;asp:BoundField DataField="Edited" HeaderText="Date" DataFormatString="{0:d}" /&gt; &lt;asp:BoundField DataField="Activity" HeaderText="Notes" /&gt; &lt;/Columns&gt; &lt;PagerSettings Position="Bottom" /&gt; &lt;PagerStyle BackColor="Black" ForeColor="White" Wrap="false" /&gt; &lt;PagerTemplate&gt; Hello there &lt;/PagerTemplate&gt; &lt;/asp:GridView&gt; </code></pre> <p>For some reason, no matter what I do, the pager isn't rendered at all. Why?</p> <p>It isn't even shown if I remove the <code>PagerTemplate</code> tag and use some standard <code>Mode</code> setting in <code>PagerSettings</code>. I'm going crazy!</p> <p><strong>UPDATE:</strong></p> <p>After doing some exhaustive googling, I find that I'm probably using a <em>very</em> old version of the CSS Friendly Control Adapters. I believe so since <a href="http://cssfriendly.codeplex.com/WorkItem/View.aspx?WorkItemId=1886" rel="nofollow">this bug</a> has struck me as well! So how do I know what version of these adapters that I'm using? I wasn't even aware I was using them!</p> <p><strong>UPDATE 2:</strong></p> <p>The problem was that I was using an old version of CSS Friendly Control Adapters. I downloaded the latest source code, compiled it, used the new DLL and .browser file and now it works just fine. I'm leaving this question here so anyone experiencing the same issue may find help from it.</p> http://stackoverflow.com/questions/1928809/how-should-i-code-this-paging 1 How should i code this paging? Marcus 2009-12-18T15:17:46Z 2009-12-18T15:40:16Z <p>Hi! I've been struggling with some code for a paging for a couple of days (YES! days) now but can't get it to work properly, probably because I don't have any experience on this kind of problems yet.</p> <p>the paging I'm trying to do should look something like this:</p> <blockquote> <p><strong>1</strong> 2 3 4 5 6 ... 101</p> </blockquote> <p>When i click on number 5 i would like it to display the numbers like this:</p> <blockquote> <p>1 ... 3 4 <strong>5</strong> 6 7 ... 101</p> </blockquote> <p>when I'm at the last couple of pages i want it to look similar to the first one:</p> <blockquote> <p>1 ... 96 97 <strong>98</strong> 99 100 101</p> </blockquote> <p>The bold number is the page that you're currently viewing.</p> <p>I want the dots to appear only when there is more than 7 pages available, if not it should look like a normal paging would look like:</p> <blockquote> <p><strong>1</strong> 2 3 4 5 6 7</p> </blockquote> <p>Right now i want to display 10 items per page.</p> <p>The language i want to use is C# (ASP.NET) and would like to, later on make this a usercontrol (Where i should set the properties TotalNumberOfItems, ItemsPerPage and so on).</p> <p>The question: How do i write the code to loop out the numbers on the correct places? :)</p> http://stackoverflow.com/questions/1925741/asp-net-4-0-routing-and-paging 0 ASP .Net 4.0 Routing and Paging sahridhayan 2009-12-18T01:27:44Z 2009-12-18T01:51:12Z <p>Hi I refer to the following article,</p> <p><a href="http://www.codeproject.com/KB/aspnet/paging%5Fwith%5Furl%5Frouting.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/paging%5Fwith%5Furl%5Frouting.aspx</a></p> <p>1) Would like to know whether it avoids full fetch of data?</p> <p>To gain the performance as it mentioned in the stackover flow question here?</p> <p><a href="http://stackoverflow.com/questions/1061574/custom-paging-or-standard-paging-in-asp-net-which-method-is-efficient">http://stackoverflow.com/questions/1061574/custom-paging-or-standard-paging-in-asp-net-which-method-is-efficient</a></p> <p>2) Does the new feature of .Net 4.0 Routing improved over previous version?</p> http://stackoverflow.com/questions/1900404/find-the-status-of-checkbox-in-grdiview-with-paging 1 Find the status of Checkbox in Grdiview with paging Sri Kumar 2009-12-14T11:35:07Z 2009-12-17T08:09:26Z <p>Hello All,</p> <p>This is the code that i use to find whether any checkbox is checked in gridview</p> <pre><code> if($("table tr td:first-child input:checkbox:checked").length ==0) { alert("Select atleast one event to delete");return false ; } if(confirm('Are you sure! you want to delete the selected events(s)?')) return true; else return false ; </code></pre> <p>i select a checkbox in the first page and i navigate to the 2nd page and i click "Delete", it throws "select atleast one Channel to delete". Which Shouldn't!</p> <p>Without paging it works fine. Any insight to implement this with paging?</p> http://stackoverflow.com/questions/1912459/alphabet-navigation-with-paging-in-jquery 0 alphabet navigation with paging in jquery Prasad 2009-12-16T05:14:49Z 2009-12-16T05:14:49Z <p>I need to do alphabet navigation with paging for my grid/table in asp.net mvc(C#) application.</p> <p>I am looking for something similar to <a href="http://www.ihwy.com/Labs/Demos/Current/jquery-listnav-plugin.aspx" rel="nofollow">jquery ListNav</a></p> <p>The above plugin is good in doing alphabet navigation, but when a particular alphabet contains more than hundred records/rows, i need to implement paging with it. So the user wont have to scroll all over the page and it looks compact in the screen.</p> <p>Any suggestions or plugins for this functionality?</p> http://stackoverflow.com/questions/1901077/is-custom-paging-of-gridview-in-asp-net-preferably-3-5-possible-without-using 1 Is custom paging of GridView (in ASP.NET, preferably 3.5) possible without using ObjectDataSource? Piotr Owsiak 2009-12-14T13:54:35Z 2009-12-14T14:21:26Z <p>See title.</p> <p>Using ObjectDataSource is associated in my mind with quick demos that you can see at conferences and in video tutorials (which typically tells me "don't do it this way in production").<br> Also I always like to have control over what's going on and when it happens. My other problem with ObjectDataSource is that is's declarative.</p> <p>Looking forward for your help and opinions.</p> <p>UPDATE: I'm retrieving only one page of results from the database and the GridView.PageCount is read-only [sic!].</p> http://stackoverflow.com/questions/61750/how-to-implement-database-engine-independent-paging 6 How to implement database engine independent paging? aku 2008-09-15T00:22:47Z 2009-12-14T13:05:40Z <p>Task: implement paging of database records suitable for different RDBMS. Method should work for mainstream engines - MSSQL2000+, Oracle, MySql, etc.</p> <p>Please don't post RDBMS specific solutions, I know how to implement this for most of the modern database engines. I'm looking for the universal solution. Only temporary tables based solutions come to my mind at the moment.</p> <p><strong>EDIT:</strong><br /> I'm looking for SQL solution, not 3rd party library.</p> http://stackoverflow.com/questions/1894562/paging-through-a-very-large-text-file 0 paging through a very large text file tahiry 2009-12-12T20:14:30Z 2009-12-12T22:07:19Z <p>I need to implement a paging widget that would be able to read an arbitrarily large text file. widget will be used by different apps with a wide range of hardware (mobile with low ram on low end) so need to be fairly memory stingy and efficient. the amount to be paged is also going to be arbitrarily different for each user. is there any free sample code that has implemented this somewhere? i'm looking for a java snippet really if possible.</p> http://stackoverflow.com/questions/669745/screen-scrape-web-page-that-displays-data-page-wise-using-mechanize 0 Screen scrape web page that displays data page wise using Mechanize MOZILLA 2009-03-21T18:40:40Z 2009-12-12T11:10:08Z <p>I am trying to screen scrape a web page (using Mechanize) which displays the records in a grid page wise. I am able to read the values displayed in the first page but now need to navigate to the next page to read appropriate values.</p> <pre><code>&lt;tr&gt; &lt;td&gt;&lt;span&gt;1&lt;/span&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$2')"&gt;2&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$3')" &gt;3&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$4')" &gt;4&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$5')" &gt;5&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$6')"&gt;6&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$7')" &gt;7&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$8')"&gt;8&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$9')" &gt;9&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$10')" &gt;10&lt;/a&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="javascript:__doPostBack('gvw_offices','Page$11')"&gt;...&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt; </code></pre> <p>I am able to get through all the links but when I try this:-</p> <pre><code>links = (row/"a") links.each do |link| agent.click link.attributes['href'] # This fails agent.click link # This also fails end </code></pre> <p>Reason is that agent.click expects the URL as an argument.</p> <p>Is there a way where we can read all the values when they are displayed page wise ? If not how can we have such a click action when the href is a postback and not a URL??</p> http://stackoverflow.com/questions/1883331/my-linq-to-sql-query-paging-logic-is-not-executing-in-the-database 0 My Linq to SQL query paging logic is not executing in the database Michael McHenry 2009-12-10T19:22:46Z 2009-12-10T19:24:18Z <p>How can I make my Linq to SQL query logic execute on the server?</p> <p>I have a created a Linq query and returned it as an IEnumerable. Subsequent operations on the query such as .Count() or .Take(5) are evaluated on the client in CLR, rather than on the server.</p> http://stackoverflow.com/questions/1864779/if-index-0-loop-else-do-only-once-json-jquery 1 if index > 0: loop; else: do only once (JSON & jQuery) pedalpete 2009-12-08T05:18:39Z 2009-12-08T06:25:36Z <p>I have been doing some customization to this jQuery paging script I found here <a href="http://stackoverflow.com/questions/516754/paging-through-records-using-jquery">http://stackoverflow.com/questions/516754/paging-through-records-using-jquery</a></p> <p>I've got the paging working nicely, and it is handling different javascript responses appropriately. </p> <p>I have one problem though. The response is expecting the JSON to have an index/array. </p> <p>90% of the time, I have multiple entries in my JSON, but sometimes I have only one item being returned. This results in zero entries. </p> <p>Here is the code I've got </p> <pre><code>var pagedContent = { data: null ,holder: null ,currentIndex : 0 ,init: function(data, holder) { jQuery("body").data(holder,data); this.holder=holder; this.show(0, holder); // show last } ,show: function(index, holder) { this.data=jQuery("body").data(holder); if(!this.data){ return; } var j=2; if(this.data.length-index&amp;lt;=j){ j=this.data.length-index-1; } var jsonObj = this.data[index]; if(!jsonObj) { return; } var holdSubset=""; for(i=0;i&amp;lt;=j;i++){ jsonObj=this.data[index+i]; this.currentIndex = index; if(this.holder=="id1"){ var theResultVariables = jsonObj.whatever var resultInput='&amp;lt;div class="putstuff"&amp;gt;'+theResultVariables+'&amp;lt;/div&amp;gt;'; } if(this.holder=="id2"){ var theResultVariables = jsonObj.whatever var resultInput='&amp;lt;div class="putstuff2"&amp;gt;'+theResultVariables+'&amp;lt;/div&amp;gt;'; } holdSubset= holdSubset+resultInput; } jQuery("body").html("&amp;lt;div id=\"counter\"&amp;gt;"+parseFloat(index+1)+" to "+ parseFloat(index+j+1)+" of "+this.data.length+"&amp;lt;/div&amp;gt;"+holdSubset+"&amp;lt;div class=\"prevNext\"&amp;gt;&amp;lt;/div&amp;gt;"); if(index!=0){ var previous = jQuery("&amp;lt;a &amp;gt;").attr("href","#").click(this.previousHandler).text("&amp;lt; previous").data("whichList",this.holder).data("thisIndex",index - 2-1); jQuery("body").append(previous); } if(index+i&amp;lt;this.data.length){ var next = jQuery("&amp;lt;a class=\"next\"&amp;gt;").attr("href","#").click(this.nextHandler).text("next &amp;gt;").data("whichList",this.holder).data("thisIndex",index + 2 +1); jQuery("body").append(next); } } ,nextHandler: function() { pagedContent.show(jQuery(this).data("thisIndex"), jQuery(this).data("whichList")); return false; } ,previousHandler: function() { pagedContent.show(jQuery(this).data("thisIndex"), jQuery(this).data("whichList")); return false } }; </code></pre> <p>I know that I can add another check </p> <pre><code>var jsonObj = this.data[index]; if(!jsonObj){ var jsonObj=this.data; } if(!jsonObj) { return; } </code></pre> <p>and then lower down</p> <pre><code>jsonObj=this.data[index+i]; if(!jsonObj){ jsonObj=this.data; } </code></pre> <p>But I don't think that is probably the most efficient way to do it. Any ideas?</p> http://stackoverflow.com/questions/1863096/silverlight-3-datagrid-grouping-detecting-group-header-click-or-header-expand-c 0 Silverlight 3 DataGrid Grouping - Detecting Group Header Click or Header Expand/Collapse Paul 2009-12-07T21:40:24Z 2009-12-07T21:40:24Z <p>I am using a PagedCollectionView in Silverlight 3 to group items in a datagrid. I want to detect when the group headers are clicked but after 6 hours still cannot find any way to do this.</p> <p>(So that when a collapsed header is clicked I can dynamically load the group's content)</p> <p>The datagrid is populated like so:</p> <p>PagedCollectionView collection = new PagedCollectionView(orgMembers); collection.GroupDescriptions.Add(new PropertyGroupDescription("Generation"));</p> <p>DataGrid1.ItemsSource = collection;</p> http://stackoverflow.com/questions/1858134/sql-server-2005-filtering-and-paging-with-rownumber 0 SQL Server 2005 filtering and paging with ROW_NUMBER() deverop 2009-12-07T06:10:18Z 2009-12-07T06:19:49Z <p>I have a table called with thousands of records and would like to implement paging logic. After doing some research, I came across the ROW_NUMBER() function introduced in SQL Server 2005. My problem is, it seems to not meet my exact need and I'm wondering how to tweak my stored procedure to make it work as expected:</p> <pre><code>ALTER PROCEDURE dbo.irweb_Posts_CollectCategoryIdDatesRange ( @CategoryId int, @StartDate datetime, @EndDate datetime, @IsDeleted bit, @PageIndex int, @PageSize int, @Offset int ) AS DECLARE @TotalRecords int SELECT @TotalRecords = ( SELECT COUNT(irweb_Posts.PostId) FROM irweb_Posts WHERE (IsDeleted = @IsDeleted) AND (CategoryId = @CategoryId) AND (DateCreated &gt;= @StartDate) AND (DateCreated &lt;= @EndDate) ) SELECT * FROM ( SELECT ROW_NUMBER() OVER (ORDER BY DateCreated DESC) AS RowId, irweb_Posts.* FROM irweb_Posts ) AS p WHERE ((IsDeleted = @IsDeleted) AND (CategoryId = @CategoryId) AND (DateCreated &gt;= @StartDate) AND (DateCreated &lt;= @EndDate) AND ((RowId &gt; @Offset) AND (RowId &lt;= (@Offset + @PageSize)))) RETURN @TotalRecords </code></pre> <p>If I execute this stored procedure, I get the following results</p> <pre><code>Running [dbo].[irweb_Posts_CollectCategoryIdDatesRange] ( @CategoryId = 7, @StartDate = 5/1/2009 12:00:00 AM, @EndDate = 5/31/2009 11:59:59 PM, @IsDeleted = False, @PageIndex = 0, @PageSize = 20, @Offset = 0 ). RowId PostId CategoryId ParentId --------------------- ----------- ----------- ----------- No rows affected. (0 row(s) returned) @RETURN_VALUE = 609 Finished running [dbo].[irweb_Posts_CollectCategoryIdDatesRange]. Running [dbo].[irweb_Posts_CollectCategoryIdDatesRange] ( @CategoryId = 7, @StartDate = 5/1/2009 12:00:00 AM, @EndDate = 5/31/2009 11:59:59 PM, @IsDeleted = False, @PageIndex = 0, @PageSize = 210, @Offset = 0 ). RowId PostId CategoryId ParentId --------------------- ----------- ----------- ----------- 205 1173 7 0 206 1169 7 0 207 1168 7 0 208 1167 7 0 209 1165 7 0 210 1164 7 0 No rows affected. (6 row(s) returned) @RETURN_VALUE = 609 Finished running [dbo].[irweb_Posts_CollectCategoryIdDatesRange]. </code></pre> <p>It seems the row number field is not starting at 1 like it is supposed to. I suspect it starts at 1 for the whole table not the filtered result set. That would not be a problem if I do not require paging of filtered records. How can I make this work?</p> http://stackoverflow.com/questions/1839900/precedence-weight-to-a-column-using-freetexttable-in-dymnamic-tsql 0 Precedence/weight to a column using FREETEXTTABLE in dymnamic TSQL derek 2009-12-03T13:33:42Z 2009-12-03T13:37:35Z <p>I have dynamic sql that perform paging and a full text search using CONTAINSTABLE which works fine. Problem is I would like to use FREETEXTTABLE but weight the rank of some colums over others</p> <p>Here is my orginal sql and the ranking weight I would like to integrate (I have changed names for privacy reasons)</p> <pre><code>SELECT * FROM (SELECT TOP 10 Things.ID, ROW_NUMBER() OVER(ORDER BY KEY_TBL.RANK DESC ) AS Row FROM [Things] INNER JOIN CONTAINSTABLE([Things],(Features,Description,Address),'ISABOUT("cow" weight (.9), "cow" weight(.1))') AS KEY_TBL ON [Properties].ID = KEY_TBL.[KEY] WHERE TypeID IN (91, 48, 49, 50, 51, 52, 53) AND dbo.FN_CalcDistanceBetweenLocations(51.89249, -8.493376, Latitude, Longitude) &lt;= 2.5 ORDER BY KEY_TBL.RANK DESC ) x WHERE x.Row BETWEEN 1 AND 10 </code></pre> <p>Here is what I would like to integrate</p> <p>select sum(rnk) as weightRankfrom From ( select Rank * 2.0 as rnk, [key] from freetexttable(Things,Address,'cow') union all select Rank * 1.0 as rnk, [key] from freetexttable(Things,(Description,Features),'cow') ) as t group by [key] order by weightRankfrom desc </p> http://stackoverflow.com/questions/300491/how-to-get-distinct-results-in-hibernate-with-joins-and-row-based-limiting 0 How to get distinct results in hibernate with joins and row-based limiting? Daniel Alexiuc 2008-11-18T23:05:13Z 2009-12-03T06:56:52Z <p>I'm trying to implement paging using row-based limiting (for example: setFirstResult(5) and setMaxResults(10)) on a Hibernate Criteria query that has joins to other tables.</p> <p>Understandably, data is getting cut off randomly; and the reason for that is explained <a href="http://www.hibernate.org/117.html#A12" rel="nofollow">here</a>.</p> <p>As a solution, the page suggests using a "second sql select" instead of a join. </p> <p>How can I convert my existing criteria query (which has joins using createAlias()) to use a nested select instead?</p> http://stackoverflow.com/questions/234289/listview-with-datapager-not-working 6 ListView with DataPager not working gfrizzle 2008-10-24T16:35:46Z 2009-12-01T21:10:51Z <p>From everything I've read, it seemed that adding paging to a ListView control should be dead simple, but it's not working for me. After adding the ListView and DataPager controls to the form and wiring them together, I'm getting very odd behavior. The DataPager correctly limits the ListView's page size, but clicking the paging buttons doesn't affect the ListView at all. The paging buttons seem to think they are doing they're job, as the last button is disabled when you go to the last page, etc., but the ListView never changes. Also, it takes two clicks on the DataPager to get it to do anything, i.e., clicking on Last once does nothing, but clicking it a second time causes the DataPager to react as if the last page is now selected.</p> <p>The only thing I can think of is that I'm binding the DataSource at runtime (to a LINQ object), not using a LinqDataSource control or anything. Has anyone seen this behavior? Am I doing something wrong? Here's the code I'm using:</p> <pre><code>&lt;asp:DataPager ID="HistoryDataPager" runat="server" PagedControlID="HistoryListView" PageSize="10"&gt; &lt;Fields&gt; &lt;asp:NextPreviousPagerField ButtonType="Button" ShowFirstPageButton="true" ShowLastPageButton="true" /&gt; &lt;/Fields&gt; &lt;/asp:DataPager&gt; &lt;asp:ListView ID="HistoryListView" runat="server"&gt; ... &lt;/asp:ListView&gt; </code></pre> <p>In the code-behind:</p> <pre><code>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Not IsPostBack Then HistoryListView.DataSource = From x in myContext.myTables ... DataBind() End If End Sub </code></pre> http://stackoverflow.com/questions/1459819/issue-with-asp-net-listview-paging-in-mozilla 0 issue with asp.net listview paging in mozilla Sunny 2009-09-22T12:30:15Z 2009-12-01T15:04:16Z <p>I have code like this:</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { // Do something } } </code></pre> <p>When I click on paging in datapager, first the IsPostBack condition is skipped since it is a postback and then control moves to listItems_PagePropertiesChanging() event. After executing this event, the control goes to page_Load again and gets inside the if(!IsPostBack) condition.</p> <p>This is happening only in Mozilla 3.0.14, but not in IE 7.0.</p> <p>Anyone please give me a solution ASAP.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1812096/how-to-get-total-result-count-in-paged-result-views 0 How to get total result count in paged result views? Andy 2009-11-28T09:35:02Z 2009-11-29T10:40:53Z <p>Hi, I have a DB table with approx. 100,000 entries.</p> <p>My web app will show <strong>paged</strong> results of search queries, which may yield between 0 and 100,000 records.</p> <p>When generating the output I want to do two things:</p> <ul> <li>Show total nr of results</li> <li>Show paged view, with 50-100 results per page.</li> </ul> <p>Obviously I would like to query records for just one page at a time from DB, but here is a dilemma - how do get the COUNT() without running the entire query?</p> <p>And if I have to run the entire query, isn't it better to select it all and cache in memory?</p> <p>What do you usually do in such a case, if we are in the range of 100 krecords per result set?</p> <p>Basically, <strong>What the most efficient way to be able to show both "found xxxxx results" message and results split into pages ?</strong></p> http://stackoverflow.com/questions/1804920/server-error-due-to-paging-issue 0 Server Error due to paging issue MrDean 2009-11-26T17:35:10Z 2009-11-26T18:28:04Z <p>Hello all, I think I sorted out my GridView1_PageIndexChanged event and thinking it should work</p> <pre><code> protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView1.DataSourceID = "lqPackWeights"; GridView1.PageIndex = e.NewPageIndex; } </code></pre> <p>However, when I now attempt to access page 2 of x, I receive the following:</p> <p>Server Error in '/project' application. This provider supports Skip() only over ordered queries returning entities or projections that contain all identity columns, where the query is a single-table (non-join) query, or is a Distinct, Except, Intersect, or Union (not Concat) operation. </p> <p>I'm a bit confused by this, I'm not using skip as far as I can see unless I am going blind?</p> <p>I am currently using SQL2000, is this a problem directly related to this instance of SQL?</p> http://stackoverflow.com/questions/1755533/how-to-organize-asp-net-repaeter-digg-style-paging 0 How to organize ASP.NET Repaeter Digg style paging sh1ng 2009-11-18T12:02:28Z 2009-11-26T07:34:38Z <p>Does anybody know the technique without writing own code for every repeater? Please give me a link</p> http://stackoverflow.com/questions/1800547/linq-and-dynamic-queries-with-paging-and-without-linq2sql 1 LINQ and dynamic queries with paging and without LINQ2SQL Martin 2009-11-25T23:00:41Z 2009-11-25T23:08:20Z <p>I have tried some ways to use LINQ dynamic queries - LINQKit and LINQ Dynamic Query Library. I do not like the second because it some way kills the LINQ idea - to be able to check queries at compile time. And with LINQKit I did not find a good example for my scenario. Also I do not like excessive using of reflection.</p> <p>My scenario is the following. I have a web service which is doing business logic and DAL logic. The webforms application is separated. I have some page with tickboxes for each field the user would like to filter, and also a text box to enter each filter value. My web service has a method GetByFilter where I pass some List. QueryObject is a class with string: filedName, object: fieldValue.</p> <p>Then my webservice receives list of query objects and now comes the big question: how to translate it to LINQ query if the field count and filter values may vary? </p> <p>What's even worse - I do not use LINQ2SQL but I use some custom DAL with repositories which may return IQuery if needed (like this one: <a href="http://msdn.microsoft.com/en-us/magazine/dd569757.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/dd569757.aspx</a> scroll to Repository). </p> <p>I know I can use paging with LINQ2SQL: var PagedData = query.Skip((iPageNum - 1) * iPageSize).Take(iPageSize);</p> <p>So how then I can get the dynamic query parameters (and iPageNum and iPageSize) from LINQ to my underlying DAL implementation to execute those queries in a dataprovider specific way? Maybe I have to implement my DAL as some LINQ data provider (I have no idea how to do it)?</p> <p>The problem is - I do not want to depend on LINQ2SQL (then I could just implement my Repositories as a wrappers for LINQ2SQL) but at the same time I want to have LINQ querying abilities everywhere outside my DAL. Is it possible?</p> http://stackoverflow.com/questions/1796094/implementing-the-gridview-paging-with-database 0 Implementing the gridview paging with database Srinivas Reddy Thatiparthy 2009-11-25T10:43:50Z 2009-11-25T10:49:26Z <p>I am binding dataset to a gridview,Which has 1000 records in it.As you know sending this entire dataset across a wire is costly. In the gridview i use paging which is set to 20 records per page. Since sending entire dataset is costly ,so i want to send 20 records at a time. How can i implement this? Is there any changes i need to do in the stored procedure? Anybody suggest me the pros and cons of this approach? Any pointers and resources are most welcome. TIA.</p> http://stackoverflow.com/questions/1795187/when-nextpage-is-clicked-in-gridview-it-shows-empty-page-in-asp-net 0 when nextpage is clicked in gridview it shows empty page in asp.net Anand 2009-11-25T07:17:43Z 2009-11-25T07:17:43Z <pre><code> Lbl_Username.Text = FirstName + " " + LastName; #region Get current year if (!IsPostBack) { int getCurrentYear = DateTime.Now.Year; int co2 = DropDownList2.Items.Count; for (int jj = 0; jj &lt; co2; jj++) { DropDownList2.Items[jj].Selected = false; string selectyrs = DropDownList2.Items[jj].Value.ToString(); if ((getCurrentYear.ToString()).Equals(selectyrs)) { DropDownList2.Items[jj].Selected = true; } } } #endregion #region Empty Columns dt.Columns.Add("employeename"); dt.Columns.Add("Workingdays"); dt.Columns.Add("Leavetaken"); GridView_attendancereports.DataSource = dt; GridView_attendancereports.DataBind(); if (dt.Rows.Count == 0) { for (int i = 0; i &lt; 5; i++) { DataRow dr = dt.NewRow(); dt.Rows.Add(dr); } GridView_attendancereports.DataSource = dt; GridView_attendancereports.DataBind(); } #endregion } protected void DropDownList2_SelectedIndexChanged1(object sender, EventArgs e) { try { calculation(); } catch { } } protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { try { calculation(); } catch { } } public void calculation() { try { #region No.Of working days calculation dt = objsun.fetchemployeename_reports(); GridView_attendancereports.DataSource = dt; GridView_attendancereports.DataBind(); for (int i = 0; i &lt; GridView_attendancereports.Rows.Count; i++) { GridView_attendancereports.Rows[i].Cells[0].Text = dt.Rows[i]["FirstName"].ToString() + " " + dt.Rows[i]["LastName"].ToString(); } string dates1 = DropDownList1.SelectedItem.Value + "/1/" + DropDownList2.SelectedItem.Value; if (GridView_attendancereports.Rows.Count != 0) { days = objsun.fetch_noofdaysin_month(dates1); month = objsun.getmonth(dates1); year = objsun.getyear(dates1); data = objsun.fetch_firstdate_lastdate(month, year); firstdate = data[0].ToString(); lastdate = data[1].ToString(); data_sunday = objsun.fetch_noofsundays(firstdate, lastdate); count_sunday = data_sunday.Count; data_holiday = objsun.fetch_holiday_month(firstdate, lastdate, "India"); count_holiday = data_holiday.Count; for (int j = 0; j &lt; count_sunday; j++) { for (int k = 0; k &lt; count_holiday; k++) { if (data_holiday[k].ToString() == data_sunday[j].ToString()) { count = count + 1; } } } bal_count = count_sunday - count; cal = bal_count + count_holiday; calculate_noofworking_days = days - cal; for (int i = 0; i &lt; GridView_attendancereports.Rows.Count; i++) { GridView_attendancereports.Rows[i].Cells[1].Text = calculate_noofworking_days.ToString(); GridView_attendancereports.Rows[i].Cells[2].Text = "0"; GridView_attendancereports.Rows[i].Cells[3].Text = "0"; } } #endregion #region Leave Taken calculation ds1 = objsun.fetch_user_leavecal(firstdate, lastdate); user = ds1.Tables[0].Rows.Count; for (int ii = 0; ii &lt; GridView_attendancereports.Rows.Count; ii++) { useridCount.Add(dt.Rows[ii]["UserId"].ToString()); for (int j = 0; j &lt; user; j++) { useraccount_userId = useridCount[ii].ToString(); applyleave_userId = ds1.Tables[0].Rows[j]["ApplyLeave_UserID"].ToString(); if (useraccount_userId == applyleave_userId) { applyLeave_fromDate = ds1.Tables[0].Rows[j]["ApplyLeave_FromDate"].ToString(); applyLeave_toDate = ds1.Tables[0].Rows[j]["ApplyLeave_ToDate"].ToString(); if ((Convert.ToDateTime(applyLeave_toDate)) &gt; (Convert.ToDateTime(lastdate))) { validUserlate = lastdate; leaveCount = objsun.calculateEmployeeLeave(applyLeave_fromDate, validUserlate); data_sunday = objsun.fetch_noofsundays(applyLeave_fromDate, validUserlate); count_sunday = data_sunday.Count; data_holiday = objsun.fetch_holiday_month(applyLeave_fromDate, validUserlate, "India"); count_holiday = data_holiday.Count; for (int n = 0; n &lt; count_sunday; n++) { for (int k = 0; k &lt; count_holiday; k++) { if (data_holiday[k].ToString() == data_sunday[n].ToString()) { count = count + 1; } } } bal_count = count_sunday - count; cal = bal_count + count_holiday; calculate_noofworking_days = (leaveCount + 1) - cal; if ((incr != 0) &amp;&amp; (captureuserid == Convert.ToInt16(applyleave_userId))) { calculate_noofworking_days = previousvalue + calculate_noofworking_days; } previousvalue = calculate_noofworking_days; incr = incr + 1; } else { leaveCount = objsun.calculateEmployeeLeave(applyLeave_fromDate, applyLeave_toDate); data_sunday = objsun.fetch_noofsundays(applyLeave_fromDate, applyLeave_toDate); count_sunday = data_sunday.Count; data_holiday = objsun.fetch_holiday_month(applyLeave_fromDate, applyLeave_toDate, "India"); count_holiday = data_holiday.Count; for (int m = 0; m &lt; count_sunday; m++) { for (int p = 0; p &lt; count_holiday; p++) { if (data_holiday[p].ToString() == data_sunday[m].ToString()) { count = count + 1; } } } bal_count = count_sunday - count; cal = bal_count + count_holiday; calculate_noofworking_days = (leaveCount + 1) - cal; //captureuserid = applyleave_userId; if ((incr != 0) &amp;&amp; (captureuserid == Convert.ToInt16(applyleave_userId))) { calculate_noofworking_days = previousvalue + calculate_noofworking_days; } previousvalue = calculate_noofworking_days; incr = incr + 1; } GridView_attendancereports.Rows[ii].Cells[2].Text = calculate_noofworking_days.ToString(); } captureuserid = Convert.ToInt16(applyleave_userId); } } #endregion #region Calculate No.Of days Present ds2 = objsun.fetch_user_presentdays(firstdate, lastdate); userPresent = ds2.Tables[0].Rows.Count; for (int iii = 0; iii &lt; GridView_attendancereports.Rows.Count; iii++) { useridCount.Add(dt.Rows[iii]["UserId"].ToString()); for (int jjj = 0; jjj &lt; userPresent; jjj++) { user_DaysPresent = useridCount[iii].ToString(); user_PresentUserid = ds2.Tables[0].Rows[jjj]["Attendence_UserID"].ToString(); if (user_DaysPresent == user_PresentUserid) { GridView_attendancereports.Rows[iii].Cells[3].Text = ds2.Tables[0].Rows[jjj]["presentdays"].ToString(); } } } #endregion #region Calculate Oofdays string s; int f = 0; ds3 = objsun.fetch_user_offdays(firstdate, lastdate); userOof = ds3.Tables[0].Rows.Count; for (int i_off = 0; i_off &lt; GridView_attendancereports.Rows.Count; i_off++) { useridCount.Add(dt.Rows[i_off]["UserId"].ToString()); for (int j_off = 0; j_off &lt; userOof; j_off++) { user_DaysOof = useridCount[i_off].ToString(); user_OofUserid = ds3.Tables[0].Rows[j_off]["oof_UserID"].ToString(); if (user_DaysOof == user_OofUserid) { s=ds3.Tables[0].Rows[j_off]["off_noofdays"].ToString(); f =Convert.ToInt32(s) + f; } } GridView_attendancereports.Rows[i_off].Cells[4].Text = f.ToString(); f = 0; } #endregion } catch { } } protected void logout_Click(object sender, EventArgs e) { Session.Clear(); Session.Abandon(); FormsAuthentication.SignOut(); FormsAuthentication.RedirectToLoginPage(); } protected void GridView_attendancereports_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView_attendancereports.PageIndex = e.NewPageIndex; GridView_attendancereports.DataSource = dt; GridView_attendancereports.DataBind(); } </code></pre> <p>hi guys. im anand again .the above code gives empty page when the gridview (page indexing) next page is clicked.somebody help.it'll be really appriciated</p> http://stackoverflow.com/questions/1792182/autopaging-or-custom-paging-which-is-better-in-datagrid 0 Autopaging or custom paging which is better in datagrid? Sikender 2009-11-24T18:58:54Z 2009-11-25T05:42:06Z <p>i used datagrid control in .net platform... but now i am in big confusion .. that is ..which is better to used custom or autopaging option.. </p> <p>gud explaination or example is needed.. </p> <p>i dont know about any method.. very well.</p> <p>i find on search.. but i dont find good material..</p> <p>thanks...</p> http://stackoverflow.com/questions/1594988/paging-in-mvc-jquery 0 Paging in MVC + Jquery unknown (yahoo) 2009-10-20T14:25:17Z 2009-11-24T10:47:19Z <p>Dear all,</p> <p>I need to add paging for my users view page, i got all the datas using Json to show in the table..i need to add paging and and also i can able to change number of users to show in a particular page. any simple Jquery plugin or source code will be very much helpful to me.</p> <p>thanks in advance, K</p> http://stackoverflow.com/questions/1788892/the-ilistsource-does-not-contain-any-data-sources-during-next-page-is-clicked-in 0 The IListSource does not contain any data sources.during next page is clicked in gridview Anand 2009-11-24T09:22:01Z 2009-11-24T09:31:40Z <p>Lbl_Username.Text = FirstName + " " + LastName; if (!IsPostBack) { ds = objSun.FetchTravelDetails(userId); int datasetcount = ds.Tables[0].Rows.Count; if (datasetcount == 0) { dt.Columns.Add("request_ID"); dt.Columns.Add("userId"); dt.Columns.Add(""); dt.Columns.Add("status"); dt.Columns.Add("remark"); dt.Columns.Add(""); for (int i = 0; i &lt; 9; i++) { DataRow dr = dt.NewRow(); dt.Rows.Add(dr); } GridView_RequisitionManagement.DataSource = dt; GridView_RequisitionManagement.DataBind(); } else { GridView_RequisitionManagement.DataSource = ds; GridView_RequisitionManagement.DataBind(); } } }</p> <pre><code>protected void GridView_RequisitionManagement_RowDataBound(object sender, GridViewRowEventArgs e) { int datasetcount1 = ds.Tables[0].Rows.Count; if (datasetcount1 != 0) { for (int i = 0; i &lt; GridView_RequisitionManagement.Rows.Count; i++) { LinkButton lnk_view = new LinkButton(); lnk_view = GridView_RequisitionManagement.Rows[i].FindControl("LinkBtn_ViewFullDetails_GridView_LeaveManagement") as LinkButton; int type = Convert.ToInt32(ds.Tables[0].Rows[i]["request_Type"].ToString()); string typeName = ""; string requestId = GridView_RequisitionManagement.DataKeys[i][0].ToString(); string request_userId = GridView_RequisitionManagement.DataKeys[i][1].ToString(); switch (type) { case 2: { typeName = "Travel Request"; lnk_view.PostBackUrl = "Status_ViewDetails_TravelClaims.aspx?requestId=" + requestId; break; } case 3: { typeName = "Other Claims"; lnk_view.PostBackUrl = "Status_ViewDetails_OtherClaims.aspx?requestId=" + requestId; break; } case 4: { typeName = "Petty cash"; lnk_view.PostBackUrl = "Status_ViewDetails_PettyCashVoucher.aspx?requestId=" + requestId; break; } case 5: { typeName = "Advance"; lnk_view.PostBackUrl = "Status_ViewDetails_AdvanceRequisitions.aspx?requestId=" + requestId; break; } } GridView_RequisitionManagement.Rows[i].Cells[1].Text = Convert.ToDateTime(ds.Tables[0].Rows[i]["date"].ToString()).ToShortDateString(); GridView_RequisitionManagement.Rows[i].Cells[2].Text = typeName; } } else { for (int j = 0; j &lt; GridView_RequisitionManagement.Rows.Count; j++) { GridViewRow rows = GridView_RequisitionManagement.Rows[j]; LinkButton lnk_grd_views = (LinkButton)rows.FindControl("LinkBtn_ViewFullDetails_GridView_LeaveManagement") as LinkButton; lnk_grd_views.Visible = false; } } } protected void GridView_RequisitionManagement_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView_RequisitionManagement.PageIndex = e.NewPageIndex; GridView_RequisitionManagement.DataSource = ds; GridView_RequisitionManagement.DataBind(); } </code></pre> <p>hi guys, i need some help here. im using the above code to display the details in the gridview.the datatable and dataset are used to display here. now i want to do page indexing in the grid here. when the next page is clicked here it shows an error that .."The IListSource does not contain any data sources" and the next page in the grid shows empty.</p> <p>pls somebody help here.</p> http://stackoverflow.com/questions/1644776/adding-a-projection-to-an-nhibernate-criteria-stops-it-from-performing-default-en 3 Adding a projection to an NHibernate criteria stops it from performing default entity selection Sandor Drieënhuizen 2009-10-29T16:02:17Z 2009-11-23T01:56:37Z <p>I'm writing an NHibernate criteria that selects data supporting paging. I'm using the <code>COUNT(*) OVER()</code> expression from SQL Server 2005(+) to get hold of the total number of available rows, as <a href="http://ayende.com/Blog/archive/2007/04/27/Paged-data--Count-with-NHibernate-The-really-easy-way.aspx" rel="nofollow">suggested</a> by Ayende Rahien. I need that number to be able to calculate how many pages there are in total. The beauty of this solution is that I don't need to execute a second query to get hold of the row count. </p> <p>However, I can't seem to manage to write a working criteria (Ayende only provides an HQL query).</p> <p>Here's an SQL query that shows what I want and it works just fine. Note that I intentionally left out the actual paging logic to focus on the problem:</p> <pre><code>SELECT Items.*, COUNT(*) OVER() AS rowcount FROM Items </code></pre> <p>Here's the HQL:</p> <pre><code>select item, rowcount() from Item item </code></pre> <p>Note that the <code>rowcount()</code> function is registered in a custom NHibernate dialect and resolves to <code>COUNT(*) OVER()</code> in SQL.</p> <p>A requirement is that the query is expressed using a criteria. Unfortunately, I don't know how to get it right:</p> <pre><code>var query = Session .CreateCriteria&lt;Item&gt;("item") .SetProjection( Projections.SqlFunction("rowcount", NHibernateUtil.Int32)); </code></pre> <p>Whenever I add a projection, NHibernate doesn't select <code>item</code> (like it would without a projection), just the <code>rowcount()</code> while I really need both. Also, I can't seem to project <code>item</code> as a whole, only it's properties and I really don't want to list all of them.</p> <p>I hope someone has a solution to this. Thanks anyway.</p> http://stackoverflow.com/questions/1778375/find-out-how-many-pages-of-memory-a-process-uses-on-linux 1 Find out how many pages of memory a process uses on linux misterfixit 2009-11-22T10:32:58Z 2009-11-22T12:17:06Z <p>I need to find out how many pages of memory a process allocates? Each page is 4096, the process memory usage I'm having some problems locating the correct value. When I'm looking in the gome-system-monitor there are a few values to choose from under memory map. </p> <p>Thanks.</p> <p>The point of this is to divide the memory usage by the page count and verify the page size. </p>