Re: [appfuse-user] Problem in wiring manager and dao-hibernate

2008-02-12 Thread adriel manalansan
Thanks Matt! On Mon, 2008-02-11 at 12:21 -0700, Matt Raible wrote: > If you load up the Spring context files using a > ClassPathXmlApplicationContext, you should be able to access all your > beans. > > Matt > > On Feb 11, 2008, at 4:49 AM, adriel manalansan wrote: >

[appfuse-user] Problem in wiring manager and dao-hibernate

2008-02-11 Thread adriel manalansan
Hello to everyone, I am using appfuse 1.9.4 and webwork. I am making a utility module for importing/exporting object using only command-line interface. I am having a problem in spring to wire my Managers and Dao-Hibernate using the applicationContext-service.xml and applicationCo

Re: [appfuse-user] Re: Problem implementing Serializable

2007-09-18 Thread adriel manalansan
t the case). > So calling the getter should return the actual values (if your > hibernate-session is not closed which would result in the > LazyInitializationException). > > Hope this helps > Josip > > > > adriel manalansan schrieb: > > I tried to delete the i

Re: [appfuse-user] Re: Problem implementing Serializable

2007-09-18 Thread adriel manalansan
his.studyPageSets); > oos.writeObject(this.studyPages); > } > > Obviously these might not be the exact implementations that you want, > but I think you'll find that this is the approach to take if you need > the Object model exactly as it currently is. > >

Re: [appfuse-user] Re: Problem implementing Serializable

2007-09-18 Thread adriel manalansan
it again and refresh my page. the variable Study.name became null but before I restarted it has a value? How does this error occurs? Thanks, Adriel On Mon, 2007-09-17 at 11:20 -0300, Derek Broughton wrote: > adriel manalansan wrote: > > > Hello everybody, > > > >

Re: [appfuse-user] Problem implementing Serializable

2007-09-18 Thread adriel manalansan
) in my hashCode, I have an error in my runtime LazyInitializationException... What will be the possible solution in my log error? Thanks for continues answering Ealden. Adriel On Mon, 2007-09-17 at 18:01 +0800, Ealden EscaƱan wrote: > On 9/17/07, adriel manalansan <[EMAIL PROTECTED]&

[appfuse-user] Problem implementing Serializable

2007-09-17 Thread adriel manalansan
Hello everybody, I think this is a stupid question but I really cant make it work. I am using appfuse 1.9.4 and webwork. In appfuse, it is default that BaseObject class implements java.io.Serializable. I have a superclass named BaseModel: public abstract class BaseModel extends BaseObject impleme

[appfuse-user] Problem implementing Nested Tables

2007-08-28 Thread adriel manalansan
Hello to everyone, I hope you are doing fine today in all of your tasks. I have a question about implementing a nested tables in displaytag. I am using: Appfuse 1.9.4 and webwork Displaytag 1.1 The problem is like this, I have a pojo named StudyPageSet that has a member of Set o

[appfuse-user] 2 Problems about ConstraintViolationException

2007-07-12 Thread adriel manalansan
Hello to everyone, I am using Appfuse 1.9.4 and Webwork. I have 2 hbm.xml files that I wrote like this: . . . Here ar

Re: [appfuse-user] problem in save()

2007-07-01 Thread adriel manalansan
; > > > > if (!isNew) { > > return INPUT; > > } else { > > return SUCCESS; > > } > > } > > > > > > > > Thanks again > > > > > > Adriel > > > > On Th

Re: [appfuse-user] problem in save()

2007-06-28 Thread adriel manalansan
ew) { return INPUT; } else { return SUCCESS; } } Thanks again Adriel On Thu, 2007-06-28 at 12:35 +0100, Michael Horwitz wrote: > Which version of Appfuse are you using and with which web framework? > > Thanks > > Mike. > > > O

[appfuse-user] problem in save()

2007-06-28 Thread adriel manalansan
Hello to everyone, I have 2 pojos, study and image. I did the relationship between the 2 tables and it is successful. Here it goes, from editStudy.html, i uploaded an image(redirected to editImage.html) that uses imageAction and saved the imageId to my study then redirect to editStudy.html again,

Re: [appfuse-user] ApplicationResources.properties to javascript?

2007-06-20 Thread adriel manalansan
functionality. Just use the following at the top of the page: > > <%@ page language="java" contentType="text/javascript" %> > > Matt > > On 6/20/07, adriel manalansan <[EMAIL PROTECTED]> wrote: > > Hello to everyone, can I output a message fro

[appfuse-user] ApplicationResources.properties to javascript?

2007-06-20 Thread adriel manalansan
Hello to everyone, can I output a message from ApplicationResources.properties in my javascript alert()? How? I am using appfuse 1.9.4 webwork. Thanks in advance. God bless u. - To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

[appfuse-user] get the value of the checkbox

2007-06-03 Thread adriel manalansan
Hello to everyone, How can i get the value of the checkbox to use in my Actions? I am using appfuse 1.9.4 and using Webwork. This are my sample jsp code:] .. I cant see the value of my checkboxes when I use this code to verify the values of what I checked: pr

[appfuse-user] Schema text failed: Could not parse mapping document

2007-05-16 Thread adriel manalansan
Hello to everyone, I made an Image.hbm.xml and save it to src/dao/*/model. The contents of the file is like this: http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd";> and my src/dao/

[appfuse-user] Problem in IE using appfuse and thickbox(and jquery)

2007-04-24 Thread adriel manalansan
I added a thickbox as a feature in my project and that works fine in firefox but when I tested it in IE, my velocity menu didn't works. I added thickbox in default.jsp like this: but when I put jquery.js on t

Re: [appfuse-user] Displaytag variable pagesize question

2007-03-26 Thread Adriel Manalansan
gt; is a variable you put in the request, session or application scope. > If you're using Servlet 2.3 (AppFuse 1.x), you have have to use a > scriplet, for example: <%=request.getAttribute("pagesize")>. > > HTH, > > Matt > > On 3/26/07, Adriel Manalan

Re: [appfuse-user] Displaytag variable pagesize question

2007-03-26 Thread Adriel Manalansan
att Raible wrote: Are you using AppFuse 1.x or 2.x? I'd suggest using the StartupListener if you're using 1.x. It should be pretty easy to stuff a variable in the servletContext (application scope). Matt On 3/27/07, Adriel Manalansan <[EMAIL PROTECTED]> wrote: How do I put the pages

Re: [appfuse-user] Displaytag variable pagesize question

2007-03-26 Thread Adriel Manalansan
session or application scope. If you're using Servlet 2.3 (AppFuse 1.x), you have have to use a scriplet, for example: <%=request.getAttribute("pagesize")>. HTH, Matt On 3/26/07, Adriel Manalansan <[EMAIL PROTECTED]> wrote: Hello to everyone. How can I put a variable pagesize in

[appfuse-user] Displaytag variable pagesize question

2007-03-25 Thread Adriel Manalansan
Hello to everyone. How can I put a variable pagesize in displaytag? What will I use to put a variable? Can I use a webwork tag? If yes, how? Thank you for your kind replies... - To unsubscribe, e-mail: [EMAIL PROTECTED] For add