Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
792 views

Working with PagedList and Membership

I've been playing around with Troy Goode's PagedList http://pagedlist.codeplex.com/. I was wondering if anyone has gotten it to work with the built in asp.net Membership piece? I have over 8000 users ...
2
votes
2answers
673 views

How can I make my yielded IEnumerable work with PagedList

I'm using Troy Goode's paged List in my project. Normally you just feed it an IEnumerable, a startindex and an item count and it all works. Now however I'm trying to feed it an IEnumerable I generate ...
1
vote
1answer
154 views

PagedList in asp.net mvc 3 not returning anything to any page after 1

I am using paged list in a search actionresult to page my results. It returns events within a date range or category.The first page returned is fine, but the second never has any results. There are ...
1
vote
1answer
847 views

Using PagedList with a viewmodel MVC 3

I am trying to implement IPagedList with a viewmodel, my main view declaration is @model PagedList.PagedList<CustomerOrders.WebUI.Models.SiteAdminListViewModel> Then i have a Display Template ...
0
votes
0answers
60 views

toPagedList() order differs from the LINQ order by clause

I have a small application that displays a list of shortURLs to a user. I'm using ASP.NET MVC3, Entity Framework, and an Oracle backend. I'm also using the PagedList library by Troy Goode ...
0
votes
0answers
53 views

Unable to get MvcPaging working

I am using MVC 3, EF 4.2 and VBNET. I downloaded and installed MvcPaging via the Package Manager console in VS2010. I then added a reference to the dll to my Core project. I also added the dll to my ...
0
votes
0answers
98 views

Entity Framework - Include other tables using UnitOfWork and Generic Repository pattern

I have a Generic repository for users: private GenericRepository<User> userRepository; public GenericRepository<User> UserRepository { get { if ...
0
votes
1answer
70 views

Html.DropDownList And PagedList problems

I Have a small problem. I'm writing a simple rss-reader. So I have Channels and Items. This is View of items. so I have a SelectedChannel to user could choose what kind of channel he want's to see ...
0
votes
0answers
161 views

MVC3 Acessing multiple data types from a display template

I am trying to get PagedList working with a viewmodel, after some reading i understand a display template is the best way to achieve this, however when i create the display template it will not let me ...
0
votes
0answers
67 views

Does TroyGoode / PagedList for Asp.Net MVC perform fast?

I would like to know if anyone had ever use PagedList https://github.com/TroyGoode/PagedList for Asp.Net. I'm interested to have your feedback regarding performance. Thanks.
0
votes
2answers
68 views

How to optimize code for Sorting?

I would like to optimize following lines of code for Sorting. public ViewResult Index(string sortorder, int? pagesize, int? page) { int pageSize = pagesize ?? 10; if ...
0
votes
0answers
49 views

VirtualItemCount for virtual loading/paging/scrolling

Normally Ui Grid components (e.g. Telerik) needs to know the total size of the items, to manage virtual loading/paging/scrolling. So when we retrive paged elements, we need, besides pageIndex and ...
0
votes
2answers
51 views

Exist some kind of Ordering object in .NET

I developing a paged service to retrieve data from database using NHibernate. In my actual point I'm receiving a skip, take and string order parameter. My question is, exist some native library to ...
0
votes
1answer
269 views

How to convert IOrderedEnumerable<T> to PagedList<T> which uses OrderBy and ThenBy?

suppose you have a class Product, with members that are declared as nested type ProductFeature: public class Product { public ProductFeature ProductID {get;set;} public ProductFeature ...
0
votes
1answer
46 views

Is there a jQuery plugin for doing in-page paged searches?

I have a simple search box, whose results I want to appear in a div within a page. Usually there should be no more than 3 results, but bizarrely, for some rare cases, there may 100+ ! I wondered if ...
0
votes
2answers
585 views

PagedList error when passing Data with Viewmodel

Hi I was wondering if anyone con shed some light with a problem that I´m experiencing when implementing pagedlist code (https://github.com/TroyGoode/PagedList) in my asp.net mvc3 website. This are the ...
0
votes
2answers
327 views

How to enable sorting on a PagedList<T>

Im hoping that someone has used the very excellent PagedList from Troy Goode? Im actually using it in a Winforms app, and while it does work, I have lost the ability to sort it. Returning a ...
0
votes
1answer
95 views

Type exists in two libraries

I'm trying to incorporate Linq to Lucene in my Asp.net-mvc project. As with most web projects, I use the PagedList type I put in my personal helper library and use it all over the place. But so did ...