Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...Getting StartedGetting StartedDAL2 sortable and pageable repeaterDAL2 sortable and pageable repeater
Previous
 
Next
New Post
5/28/2013 8:04 AM
 

I've got a simple module that is basically going to just display a list of data from a table, ordered by date. It would also be good if the table could be paged. Data can't be edited.

My most pressing question is how I could sort the data in the repeater?

My source table has a DateTime column called "Date" which is exposed via DAL2 to the application. I can stick the date in the repeater control I'm using, but can't sort by it.

Any tips?

I am a total beginner at DotNetNuke, but quite experienced programmer.

Dylan.

using DNN 7.0.6

 
New Post
10/15/2013 2:50 PM
 
DAL2 returns an iEnumberable object. Why don't you use some LINQ to sort?

IEnumerable contacts = GetMyContacts();

myServerControl.DataSource = contacts.OrderBy(c => c.LastName).ThenBy(c => c.FirstName);
myServerControl.DataBind();

Will Strohl

Upendo Ventures Upendo Ventures
DNN experts since 2003
Official provider of the Hotcakes Commerce Cloud and SLA support
 
New Post
10/15/2013 8:41 PM
 

Thanks for the idea, Will.

It is a while since I had this issue, and I resolved it (for the moment) by using a jquery plugin. It works, for now, but as the size of the data grows I will have problems and need to introduce some paging.

The data for my specific instance is not core DNN data, but rather custom data created for my module to use. Would DAL2 still give me an iEnumerable? I've fallen back on just using LINQ for all this data access.

 
Previous
 
Next
HomeHomeDevelopment and...Development and...Getting StartedGetting StartedDAL2 sortable and pageable repeaterDAL2 sortable and pageable repeater


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out