Re: [appfuse-user] Help needed for Many to Many relation

2008-04-07 Thread Rob Hills
Hi Trish, Trish wrote: Hi Im new to appfuse and trying to implement manay to many relation for Employee Project tables, the created model classes as follows At a quick glance, your entities look OK to me. public List getByProject(Long projectId, Long periodId) { return getHiberna

[appfuse-user] Help needed for Many to Many relation

2008-04-07 Thread Trish
Hi Im new to appfuse and trying to implement manay to many relation for Employee Project tables, the created model classes as follws @Entity public class Employee extends BaseObject { private Long employeeId; private String employeeName; private List employeesProjects; @Id

Re: [appfuse-user] Struts2 "s:if" tag comparisons and OGNL

2008-04-07 Thread Richard Mixon
Dustin, Thanks - I would swear I had tried it before as you suggested. But I did it one more time and its working great! Thanks again. > From: Dustin Pearce <[EMAIL PROTECTED]> > Reply-To: > Date: Mon, 7 Apr 2008 16:10:00 -0700 > To: > Subject: Re: [appfuse-user] Struts2 "s:if" tag comparison

Re: [appfuse-user] Struts2 "s:if" tag comparisons and OGNL

2008-04-07 Thread Dustin Pearce
I think it is an issue where you think you need to pass a string to disabled, presumably because you expect to see a <. disabled="true"/> out in the HTML. Well it turns out that the disabled switch expects a boolean switch rather than pass through text. So that helps a little: Bu

Re: Re: Re: [appfuse-user] My old question,about the target directory of appfuse core!

2008-04-07 Thread Matt Raible
You should start studying Maven then - this is a feature of Maven that we're simply using. You might start by reading the following (free) online book. http://www.sonatype.com/book/ Matt 2008/4/7 oliver.appfuse <[EMAIL PROTECTED]>: > > > Nothing,the only purpose is studying,so i want learn the u

Re: Re: Re: [appfuse-user] My old question,about the target directory of appfuse core!

2008-04-07 Thread oliver.appfuse
Nothing,the only purpose is studying,so i want learn the useage of the poms in the directories,if they are very useful! oliver.appfuse 2008-04-07 发件人: Matt Raible 发送时间: 2008-04-07 23:15:06 收件人: users@appfuse.dev.java.net 抄送: 主题: Re: Re: [appfuse-user] My old question,about the target direc

Re: Re: [appfuse-user] My old question,about the target directory of appfuse core!

2008-04-07 Thread Matt Raible
What are you trying to do? Matt On Mon, Apr 7, 2008 at 8:22 AM, oliver.appfuse <[EMAIL PROTECTED]> wrote: > > > hi,matt > thank you for help! > how should i deal with these pom when i studying, making some modification > or pakaging the core project,does these file useful for the project? > > >

[appfuse-user] question in my project build webservice with xfire and spring .i get a Jsr181HandlerMapping error

2008-04-07 Thread 郑东哲
hi everybody! i get a error when i build my first appfuse webservice project with xfire and spring . my IDE - myeclipse 6 with Tomcat 5.0 who can help me? thanks. ERROR [main] ContextLoader.initWebApplicationContext(206) | Context initialization failed org.springframework.beans.factory.BeanCre

Re: [appfuse-user] My old question,about the target directory of appfuse core!

2008-04-07 Thread Matt Raible
They're generated automatically by Maven as part of the build, but they were manually setup originally when we first ported AppFuse from Ant to Maven. Matt On Mon, Apr 7, 2008 at 7:34 AM, oliver.appfuse <[EMAIL PROTECTED]> wrote: > > > hi, > i have wrote one mail to ask the question,but no one re

[appfuse-user] My old question,about the target directory of appfuse core!

2008-04-07 Thread oliver.appfuse
hi, i have wrote one mail to ask the question,but no one response me.now,i want ask one more time,if still cant get answer,i will give up,hehe. the question is that i found the target directory of appfuse core module,got serval directories called appfuse-data,appfuse-hibernate..and so on.each of

Re: [appfuse-user] AppFuse 1.9.4 with Flex.

2008-04-07 Thread Irshad Buchh
Just to add one more question: Is it possible to have some .mxml files created in an existing JSF AppFuse 1.9.4 application thus protecting the existing infrastructure? Does the JSF navigation work with .mxml files like .xhtml files. --Irshad. Irshad Buchh wrote: > > Hi, > We are doing very w

[appfuse-user] AppFuse 1.9.4 with Flex.

2008-04-07 Thread Irshad Buchh
Hi, We are doing very well with AppFuse 1.9.4 (JSF+Hibernate). Lately, we have been asked by some clients to look at Flex as the UI for the AppFuse 1.9.4 based projects keeping the business logic in-tact. Can someone help us how to get started with Flex replacing JSF under such scenario. --Irshad

Re: [appfuse-user] Select not getting value from bean

2008-04-07 Thread JC Oosthuizen
Hi All, I eventually got it right by changing my column to a string (Using EnumType.STRING) and removing the key and value attibutes from the list. I also changed the getTitleList to return an List of Title and not a List of LabelValue. I also used a custom converter and I think this is where the