[appfuse-user] checkbox label positioning problem. How to control via css

2007-06-14 Thread Will Berger
I can't figure out what is controlling the input type="checkbox" label positioning. It is a displayed about 4 pixels below the checkbox and just looks odd. I tried going into the form.css and messed with the input.checkbox, input.radio{ display: block; /* khchange: made a change h

Re: [appfuse-user] struts.xml strange behaviour action mapping and redirects

2007-06-10 Thread Will Berger
n't help. Will Will Berger wrote: > > I may be missing a concept. > > I have a action called ScenarioDatasourceAction and a jsp called > scenarioDatasource.jsp. In my action's execute method I would return > "success", but the jsp would not redirect t

[appfuse-user] struts.xml strange behaviour

2007-06-10 Thread Will Berger
I may be missing a concept. I have a action called ScenarioDatasourceAction and a jsp called scenarioDatasource.jsp. In my action's execute method I would return "success", but the jsp would not redirect to "/scenarioOutputForm.html" It just didn't make sense, I felt like there is another action

Re: [appfuse-user] ajax and datepicker on 2m4

2007-05-25 Thread Will Berger
Nothing works. Does anyone have a example that works > with any workaround? > > Thanks, > > Matt > > On 5/24/07, Matt Raible <[EMAIL PROTECTED]> wrote: >> Do you have example code so I can try to reproduce this problem locally? >> >> Thanks, >&g

[appfuse-user] ajax and datepicker on 2m4

2007-05-24 Thread Will Berger
was wondering if anyone has gotten the struts2 datepicker and the ajax working together on the same page. If i add the ajax tags, the datepicker stop working. If I take out datepicker and the dojo include, the ajax tags start working. Any help much appreciated. Will -- View this message in

Re: [appfuse-user] datepicker problems in appfuse 2m5

2007-05-24 Thread Will Berger
Fyi I did this in a test environment. It wasnt an upgrade. fresh new build just for this. I tried putting the dojo javascript error message. dojo not defined dojo.require("dojo.widget.DatePicker"); Will ----- Will Berger wrote: > >

[appfuse-user] datepicker problems in appfuse 2m5

2007-05-24 Thread Will Berger
I can't get the datepicker to display. I thought this was fixed in 2m5. What am I doing wrong. <%@ include file="/common/taglibs.jsp"%> My page Div 1 Will -- View this message in context: http://www.nabble.com/datepicker-problems-in-appfuse-2m5-tf3813

Re: [appfuse-user] execute junit tests in eclipse

2007-05-19 Thread Will Berger
quot;classpath*:/applicationContext-dao.xml"}; return retCode; } class looked liked when i finally got it working. mraible wrote: > > If looks like you need a comma between your last two paths. Also, it > should be "classpath*:/applicationContext-dao.xml" for

Re: [appfuse-user] execute junit tests in eclipse

2007-05-18 Thread Will Berger
ill mraible wrote: > > Are you extending one of AppFuse's TestCase classes, or are you > writing your own? If your own, what path are you using to load > applicationContext-dao.xml? It should be the same one that's used in > web.xml and the Base*TestCase classes. >

Re: [appfuse-user] execute junit tests in eclipse

2007-05-18 Thread Will Berger
;mvn package" in your project and refresh it in Eclipse, > you should be able to run your JUnit tests. > > Matt > > On 5/17/07, Will Berger <[EMAIL PROTECTED]> wrote: >> >> I am having the same problem, when I reference sessionFactory in my dao >> d

Re: [appfuse-user] execute junit tests in eclipse

2007-05-17 Thread Will Berger
I am having the same problem, when I reference sessionFactory in my dao definition in the applicationContext.xml the junit tests fail. Anyone know why this is the case? Will wnqq wrote: > > Have anyone successfully executed junit tests in eclipse? > > My environment: > * Appfuse v2.0M4 + st

Re: [appfuse-user] sitemesh and decorator exclude tag not working

2007-05-17 Thread Will Berger
Yes. That worked as long as I didn"t include any request parameters. I definantly need to pass in some paramters. mraible wrote: > > Have you tried the following? > > /attributePicker.html* > > On 5/16/07, Will Berger <[EMAIL PROTECTED]> wrote: >> &g

Re: [appfuse-user] sitemesh and decorator exclude tag not working

2007-05-16 Thread Will Berger
oops. My decorators.xml file looks as follows. /attributePicker.html /resources/* /scripts/dojo/* /* Hi, I a struts 2 action that is mapped to url /attributePicker.html and a exclude entry in my decorator file. Since it is a popup, i d

[appfuse-user] sitemesh and decorator exclude tag not working

2007-05-16 Thread Will Berger
Hi, I a struts 2 action that is mapped to url /attributePicker.html and a exclude entry in my decorator file. Since it is a popup, i don't want it decorated. It needs to look different. When i type in the url /attributePicker.html, it does what i expect does not decorate the url If I put re

[appfuse-user] login.jsp and menus

2007-04-30 Thread Will Berger
Does anyone know how to make the login.jsp not display the mainMenu tab. It is there you can click on it, but of course can't access it because you have not logged in. My customer wants to turn it off. Any help much appreciated. Will -- View this message in context: http://www.nabble.com/lo

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-26 Thread Will Berger
Wanted to add a note to my findings. When I tried to run this on a linux machine, the datepicker did not work. The issue turned out to be related to scriptaculous. Commenting it out made it work. Will Will Berger wrote: > > Ok...I think I am finally there. Thanks everyone for the

Re: [appfuse-user] run jetty on something other than localhost

2007-04-25 Thread Will Berger
I asked the jetty forum. Here was a possible solution. I haven't verified that it works. Will --- Check out the section Configuration Common to all Goals, in particular the example and the element of the : http://jetty.mortbay.org/maven-plugin/howto.html

Re: [appfuse-user] run jetty on something other than localhost

2007-04-24 Thread Will Berger
machine I am on. Lets say the machine's name is zeus. I would like it to bind on zeus so other users mraible wrote: > > Are you trying to get it bind to another machine or just another hostname? > > Matt > > On 4/24/07, Will Berger <[EMAIL PROTECTED]> wrote: >&

[appfuse-user] run jetty on something other than localhost

2007-04-24 Thread Will Berger
Does anyone know how to make jetty bind to a host other than localhost. Saw references to how to change the port. Can't figure out how to make it bind to another host. Any help much appreciated. Will -- View this message in context: http://www.nabble.com/run-jetty-on-something-other-than-loc

[appfuse-user] How to change the label/title position on a textfield

2007-04-23 Thread Will Berger
Currently when we display a textfield or anything with a title/key it displays it above the field. My customer wants to have it display to the left of the field. Is there an easy way to do this? Seems like it would be a css change? Will -- View this message in context: http://www.nabble.com

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-23 Thread Will Berger
Ok...I think I am finally there. Thanks everyone for the input. Here is what my findings were. 1. I need to copy /scripts/dojo directory in the struts jar to webapp/scripts dir 2. I needed to include . It did not require to be in the body. 3. Sitemesh does need to have the following entry

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-22 Thread Will Berger
; > staticFilter > > org.appfuse.webapp.filter.StaticFilter > > includes > /scripts/dojo/* //by default its > /struts/dojo/* > > > > > Ari Ramirez. > > > > 2007/4/19, Will Berger <[EMAIL PRO

Re: [appfuse-user] How to run AppFuse web app on Jetty in IDEA

2007-04-21 Thread Will Berger
what I want. Please kindly give me the details. > Thanks millions in advance! > > > Will Berger wrote: >> >> I assume you are doing this to debug your appfuse app inside IDEA. If >> so, there is an easier way to do enable debugging in IDEA. Let me know >> if inter

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-20 Thread Will Berger
I tried both these things and it did not help. It is very odd. When you click on the display the datepicker shows the month/time screen, above it you see the application name header and then it has the footer. when you select a day. the 2nd header and footer disappear. I turned off sitemesh di

Re: [appfuse-user] implementing breadcrumbs

2007-04-20 Thread Will Berger
; There was discussion about this a long time ago. Matt pointed us to this > really cool library > > http://wfnm.sourceforge.net/ > > http://www-128.ibm.com/developerworks/library/wa-webflow/?ca=dnt-546 > > Sanjiv > > > On 4/20/07, Will Berger <[EMAIL PROTECTED]> wro

Re: [appfuse-user] How to run AppFuse web app on Jetty in IDEA

2007-04-20 Thread Will Berger
I assume you are doing this to debug your appfuse app inside IDEA. If so, there is an easier way to do enable debugging in IDEA. Let me know if interested and ill give you the details. Will swordfish wrote: > > I've created a new modular tapestry+ibatis project (2.0-m5-SNAPSHOT) and > issue

[appfuse-user] implementing breadcrumbs

2007-04-20 Thread Will Berger
Was wondering if anyone had a good solution for implementing breadcrumbs. I suppose I could implement this, but i would bet someone has solved this before. I am looking for some kind of jsp tag. I saw references to SiteMesh being able to do it, but could not find any documentation on how? Any

Re: [appfuse-user] sucessMessages

2007-04-20 Thread Will Berger
Sure enough thats what it was. Thanks. Will mraible wrote: > > You would get this error if you're no longer loading prototype.js in your > page. > > Matt > > On 4/19/07, Will Berger <[EMAIL PROTECTED]> wrote: >> >> Would anyone know why I ke

[appfuse-user] sucessMessages

2007-04-19 Thread Will Berger
Would anyone know why I keep getting this javascript error message, It does not prevent the page from loading. $ is not defined [Break on this error] if ($('successMessages')) { Will -- View this message in context: http://www.nabble.com/sucessMessages-tf3608777s2369.html#a10083577 Sent from

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-19 Thread Will Berger
to use dojo >> widgets. This way Prototype and Scriptaculous won´t be a problem with >> default configuration in appfuse. >> >> 2007/4/19, Will Berger <[EMAIL PROTECTED] >> <mailto:[EMAIL PROTECTED]>>: >> >> >> Cancel that >>

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-18 Thread Will Berger
Cancel that It can't find dojo apparently. dojo undefined javascript error message. I did try commenting out prototype, scriptaculous. Will Will Berger wrote: > > no javascript errors. > > will > > > > Aridany Ramirez wrote: >> >> Are you get

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-18 Thread Will Berger
his JSP, does it work? >> >> On 4/18/07, Will Berger <[EMAIL PROTECTED]> wrote: >> > >> > I was wondering if anyone has run into this. I am trying to use the >> > datepicker and it doesn't seem to render in the html page. When I go >> to >>

[appfuse-user] datepicker problems in appfuse 2m4

2007-04-18 Thread Will Berger
I was wondering if anyone has run into this. I am trying to use the datepicker and it doesn't seem to render in the html page. When I go to the struts cookbook demo site. The datepicker generates just fine. I took the example page and tried running it in appfuse. It also did not run. Anyone

Re: [appfuse-user] Filter ?

2007-04-08 Thread Will Berger
sure did...thanks for the insight. Will mraible wrote: > > On 4/8/07, Will Berger <[EMAIL PROTECTED]> wrote: >> >> ok...here they are. >> >> cacheFilter - what does it do and how is it used > > This is not used - if you look you'll see it'

Re: [appfuse-user] Filter ?

2007-04-08 Thread Will Berger
ok...here they are. cacheFilter - what does it do and how is it used clickstreamFilter - seems to catputre some metrics. Not sure when it is invoked encodingFilter- what does it do and how is it used gzipFilter- what does it do and how is it used lazyLoadingFilter localeFilter - does something

[appfuse-user] Filter ?

2007-04-07 Thread Will Berger
Was wondering if anyone knows if there is any documentation that describes what all the filters do in the web.xml. Any help much appreciated. Will -- View this message in context: http://www.nabble.com/Filter---tf3540751s2369.html#a9883944 Sent from the AppFuse - User mailing list archive at N

Re: [appfuse-user] Appfuse user administration/registration

2007-03-15 Thread Will Berger
For my new wml/xhtml jsp pages, how can i get struts to ignore the default.jsp decorator and still allow me to use the actions you built? This would be very interesting if it just works. Will mraible wrote: > > That sounds like it should work. > > Matt > > On 3/15/07, W

[appfuse-user] Appfuse user administration/registration

2007-03-15 Thread Will Berger
Matt, I am building a web app that will require users to register and authenticate from their wireless device via wml. I had a thought of using the appfuse common classes/mgrs/action and adding new struts.xml entries that use jsp that contain wml instead of html. Do you forsee any problems with