Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 683271
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:41:20+00:00 2026-05-14T01:41:20+00:00

I have an organization class class Organization { hasMany = [member:Members] } class Members

  • 0

I have an organization class

class Organization {
hasMany = [member:Members]
}

class Members {
belongsTo = organization
}

I’m printing all the members using

<ol>
<g:each in="${organizationInstance?.members?}" var="m">
    <li><g:link controller="members" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li>
</g:each>
</ol>

I want to sort the printing of members so that it would print alphabetically.
any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T01:41:20+00:00Added an answer on May 14, 2026 at 1:41 am

    First, you need to change somehow your classes in order to have a name for members !
    So let’s assume that your classes are:

    class Organization {
    hasMany = [members:Member]
    }
    
    class Member {
    belongsTo = organization
    String name
    }
    

    Then you have two ways of sorting the members in alphabetical order.

    First method : you can retrieve all members and then sort them as shown below:

    <g:each in="${organizationInstance?.members?.sort {it.name} }" var="m">
    

    Second Method : You retrieve members directly from GORM in alphabetical order

    def members = Member.findAllByOrganization(organizationInstance, [sort: "name"])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a model 'Organization' which has following fields class Organization(models.Model): members = models.ManyToManyField(User,related_name='org_members')
I have this relationship : class Organization < ActiveRecord::Base has_many :users end class User
I have the following class structure: class Organization { string Name; List<User> users; List<Organization>
I have these models: class UserProfile(models.Model): user = models.OneToOneField(User) #etc class Organization(models.Model): users =
In our organization we have some projects which are (by policy) open to all
I have Address and Organization tables. Address has FK named organizationID . Address class
Suppose I have the following class hierarchy: public abstract class Organization { /* properties
I'm struggling to find a pythonic approach to the following class organization: I have
Using Rails 3.2, and Mongoid 2.4. I have a legacy model, Organization, that embeds_many
I have the following sets of models (abbreviated for clarity): First set: class Web(Link):

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.