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 8856929
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:28:10+00:00 2026-06-14T14:28:10+00:00

I have similar to scale to biological classification . I am looking for a

  • 0

I have similar to scale to biological classification. I am looking for a tapestry component that can link them faster.
However I am limitied to tapestry 5.2.6.

@Entity
public class Species implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Basic(optional = false)
    @NonVisual
    private Long Id;
    @Basic(optional = false)
    private String Name;   
    @ManyToOne   
    @NotFound(action = NotFoundAction.IGNORE)   
    private Kingdom kingdom; 
    //getter and setter frod data above
}

@Entity
public class Kingdom implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Basic(optional = false)
    @NonVisual
    private Long Id;
    @Basic(optional = false)
    private String Name; 
    @OneToMany
    private Collection<Species> speciesCollection;
    //getter and setter frod data above
}

We have entered in database 1000 records of Species and we want to link them.
Only solution I know use select object ,which has complex code, inside the form that has a table. Which I think uses a GenericValueEncoder.

<td><t:label for="species"/></td><td><t:selectObject t:id="species" blankOption="never" list="speciesList" value="species" labelField="literal:name"/></td>

Sure selectobject works however its really slow comparing to palette or looping check-box (is not available in my version) for each entered species.

However main problem remains that I do not understand palette java code.
Many variable have underlines, who know for what?

Since there are no comments anywhere,
its hard to understand what does what,
but what I assume I need to do change line 14.

to use GenericValueEncoder instead of EnumValueEncoder
And GenericSelectModel instead of EnumSelectModel.

If any managed to implement palette with entity objects please tell me what to do?

  • 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-06-14T14:28:12+00:00Added an answer on June 14, 2026 at 2:28 pm

    Here is an example of the Palette as we use it. Where I use Account, you can substitute it with your Species.

    @Component(id = "accountsPalette", parameters = {
            "label=literal:My palette",
            "selected=selectedAccountsIds",
            "model=availableAccountIdsModel",
            "encoder=accountsEncoder"})
    private Palette accountsPalette;
    
    public SelectModel getAvailableAccountIdsModel() throws Exception {
    
        final List<OptionModel> options = new ArrayList<OptionModel>();
    
        for(Account account : availableAccounts) {
    
            options.add(new OptionModelImpl(account.getFullNameSingleType(), account.getId()));
        }
    
        return new AbstractSelectModel() {
    
            public List<OptionModel> getOptions() {
                return options;
            }
    
            public List<OptionGroupModel> getOptionGroups() {
                return null;
            }
        };
    }
    
    public ValueEncoder<Long> getAccountsEncoder(){
        return new ValueEncoder<Long>() {
    
            public String toClient(Long value) {
                return value.toString();
            }
    
            public Long toValue(String clientValue) {
                return Long.parseLong(clientValue);
            }
        };
    }
    
    public List<Long> getSelectedAccountsIds() {
        return selectedAccountIds;
    }
    
    public void setSelectedAccountsIds(List<Long> selectedAccountIds) throws Exception {
        ..... deal with the selected ids .....
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have 2 functions that both have similar arguments void example(int a, int
I know there are other questions that have similar issues, but I have read
I have 5 tables (tbl1, tbl2, tbl3, tbl4, tbl5) that all have similar columns,
I am maintaining several Perl scripts that all have similar code blocks for different
3D/2D windows have a Z-scale property. Do intersection/interpretation windows have anything similar?
I have seen the other similar questions, but I am looking for a tool
I want to create a fairly large-scale Flex web application that has a similar
I have similar instances of the same web application running across many domains. I
I have similar problem to one discussed here , but with stronger practical usage.
Do we have similar windows API of DebugBreak in Unix/ Linux. I want to

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.