Dear list... as some of you already know I have never been very happy with Webhelpers' built-in pagination module. So I wrote my own (that is NOT compatible with the existing one) and I love it so far.
Interested? Get it from http://workaround.org/pylons/paginator/ and let me know what you think. Some of the features: - just one class called *Page* you instantiate to get all the functionality - the Page object works like a list (actually it even subclasses 'list') so you can directly iterate over it - create a navigator easily that allows the user to navigate through the pages - AJAX functionality to output a new page without reloading the whole HTML page - less code to write for common cases - decent documentation :) - works with these types of data: (as supported by Ben's webhelpers.pagination.orm module) - lists - sets - SQLObject instances - SQLAlchemy mapped classes (that you get from assign_mapper) - SQLAlchemy query instances (that you get from model.session_context.current.query) - SQLAlchemy table instances (that you define in your models) I'd like to hear back from you hoping that it's useful for some people. Cheers Christoph --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
