Re: nested tags problem

2005-10-26 Thread Lucas Bern
Hi may be the scope request is not enough? why are you instantiating the ActionForm?, it is supposed to have struts doing it for you, any special reason? Lucas Koen Jans [EMAIL PROTECTED] escribió: Hi, i am trying to access nested properties on a jsp page like this: On my ActionFormY

Re: Tiles: Unique body attributes for each part.

2005-09-01 Thread Lucas Bern
Hi, that sis a limitation of html. You con nota have more than one body in the same document. The only sokution u can see is using frames, or replacing de body t ag by a div tag, apllying a styke with the background settings... i wish it helps Lucas oracle411 [EMAIL PROTECTED] escribió:

Tag that uses tags

2005-08-24 Thread Lucas Bern
Hi guys... I need to do something like this: x = new SomeTag(); x.setContext(this.getContext()); x.doStarTag(); x.DoBody(); ... etc... I´m not sure the way i should do that, has anybody ben dealing wit this before?? Thanks Lucas __

Re: View side

2005-08-20 Thread Lucas Bern
Hi Rafael... I have been developing in a project with struts hibernate and JSP for front end... my experience was great, I think JSP is the best idea, sometimes I get surprised with the results you can see coupling differents cutsom tags. Velocity is a great technology, but, remember it is not

Struts and Laszlo

2005-08-18 Thread Lucas Bern
Hia guys... I´would it be a nosense to integrate Laszlo with struts??? I think Laszlo is responsible for controlling the application, so, may be we can hav struts incharge of generating data in XML format so that Laszlo presentation server show it??? I´m thinking of extending struts so that

Re: Cannot retrieve definition for form bean null disaster

2005-07-24 Thread Lucas Bern
Hi, I think the problem should be arround the SurveySubmit action... Coul you paste that definition form struts-config??? What is failing??, the load of the form, or the submit??? waiting Lucas Gareth Meyrick [EMAIL PROTECTED] escribió: hi, i'm at a loss.. i've verified the usual

Re: Cannot retrieve definition for form bean null disaster

2005-07-24 Thread Lucas Bern
is not the problem, so when the submit is performed the app crashes... and if you start form the begning it crashes again... -is it ok? wish it helps, make me know what happens Gareth Meyrick [EMAIL PROTECTED] escribió: hi, Lucas Bern wrote: Hi, I think the problem should be arround

Re: html:link quesiton

2005-07-15 Thread Lucas Bern
Hi, i think it shuold work... bean:define id=addres value=[EMAIL PROTECTED] type=java.lang.String / html:link action=somthingAction paramId=par1 paramName=addres I wish it helps Lucas Aleksandar Matijaca [EMAIL PROTECTED] escribió: Hi there, I am trying to use like to have it render the

forwarding out

2005-07-05 Thread Lucas Bern
Hi all I neeed to forwars form my action to a page out side my context... something like return new ActionForward(www.google.com); does anybody know haw to do it?? thanks - 1GB gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo

Re: Render an html button tag

2005-06-28 Thread Lucas Bern
Hello Gary, You can do: html:button property=darkSideButton SearchYour Feelings /html:button html:button property=jedisSideButton SearchYour Feelings /html:button your form: public class SomeForm extends ActionForm{ public String darkSideButton = null; public String jedisSideButton = null;

Re: use boolean field as property

2005-06-25 Thread Lucas Bern
Hia Tony, it seems that your bean is not what his ckass name says to be I mean, mybean, is not a JavaBean because it does not implement the getter for isGood attribute in a correct way... it should be public class mybean{ boolean isGood; public boolean isIsGood(){ return isGood; } public

Re: ValidatorActionForm and java script validation....

2005-06-24 Thread Lucas Bern
Laurie Harper [EMAIL PROTECTED] escribió: Yes, that's the point of ValidatorForm / ValidatorActionForm. The validation rules are looked up according to the action mapping 'name' or 'path' attribute, respectively. It shouldn't make any difference if the actions use the same form. L. Lucas Bern wrote

Re: varying targets

2005-06-24 Thread Lucas Bern
oh, I had to face this problem some weeks ago And no way my friend. The only solution us that the target attribute of the html:form tag be a request time expression, like this: JSP html:form action=cloneAtack target=%=request.getAttribute(whereIsTheTarget)% bla bla bla /html:form

Re: Displaytag and Struts problem

2005-06-23 Thread Lucas Bern
Hi Martin... I´ve been using display tag and struts for a long time, and, I can say that it works beautifull, no limitation in any functionality provided by both frameworks... I tell you this because if you think something can not be done, may be you are wrong... The problem with the

ValidatorActionForm and java script validation....

2005-06-23 Thread Lucas Bern
Hi guys does anybody know if the java script validation of validator framework can be used with ValidatorActionForm, I need to perform diferent validations in diferent action that used the same form i would like these validations be performed in the client... Thanks Lucas

Re: tiles:insert question

2005-06-16 Thread Lucas Bern
Hi Janek I'm new to tiles, but, as far as I'm concerned, the 'flush' attriubte, makes that the result of the page, component, definition or whatever you be inserting, by 'insert tag' will be displayed one by one when setted to true. Suppose you have: tiles:insert page='firstPage.jsp'

ValidatorActionForm and JavaScript

2005-06-07 Thread Lucas Bern
Hi all I have a problem with validator. I'm trying to validate a form depending on the action, so I'm using the ValidatorActionForm as superclass of my form... I made everything as specified in the documentation, but, the java script code generated by validator produces an error

Re: ValidatorActionForm and JavaScript

2005-06-07 Thread Lucas Bern
='com.arIsThePlaceToBe.struts.action.YourAction' ... Conoces? Martin- - Original Message - From: Lucas Bern To: Struts Users Mailing List Sent: Tuesday, June 07, 2005 3:04 PM Subject: ValidatorActionForm and JavaScript Hi all I have a problem with validator. I'm trying to validate a form depending on the action, so

Re: ValidatorActionForm and JavaScript

2005-06-07 Thread Lucas Bern
='com.arIsThePlaceToBe.struts.action.YourAction' ... Conoces? Martin- - Original Message - From: Lucas Bern To: Struts Users Mailing List Sent: Tuesday, June 07, 2005 3:04 PM Subject: ValidatorActionForm and JavaScript Hi all I have a problem with validator. I'm trying to validate a form depending on the action, so

Validator question

2005-06-03 Thread Lucas Bern
Hi all... I am trying to validate a form... public XForm extends ValidatorForm{ private YForm[] subForms; getters.. setters-- } public YForm extends ValidatorForm{ private String field; getters.. setters.. } I need to validate my XForm first validating each YForm in subForms... I

target attribute from server in html:link tag please Help!

2005-06-01 Thread Lucas Bern
Hi guys! i have a problem I need to configurate de target attribute of my form, but i have to do it from mi action Any idea? Thanks Lucas __ Correo Yahoo! Espacio para todos tus mensajes, antivirus y antispam ¡gratis! ¡Abrí tu cuenta ya!

DownLoad Action - exceptions

2005-05-20 Thread Lucas Bern
Hello, I'm lookig for advise... How should be managed the exceptions by an acton that extends DownLoadAction Thanks Lucas - A tu celular ¿no le falta algo? Usá Yahoo! Messenger y Correo Yahoo! en tu teléfono celular. Más información

Re: DownLoad Action - exceptions

2005-05-20 Thread Lucas Bern
misunderstand the question? -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com Lucas Bern wrote: Hello, I'm lookig for advise... How should be managed the exceptions by an acton that extends DownLoadAction Thanks Lucas

RE: Best practice for redirecting on session timeout?[Scanned]

2005-05-13 Thread Lucas Bern
Hi, I need help too... How should I write the if that desires if the session is expired???/ thanks Lucas Adam Lipscombe [EMAIL PROTECTED] escribió: Folks Many thanks for all your input on this. I decided to go with the filter approach. My doFilter() method is below. I certainly traps the

test session expired HELP!

2005-05-13 Thread Lucas Bern
Hi guys! can anybody tellme how to know if a session is espired??? thanks! Lucas Brian McGovern [EMAIL PROTECTED] escribió: Thank you Mike. That was EXACTLY it. VERY appreciated. I was messing around all morning with this. -Original Message- From: Mike Millson [mailto:[EMAIL

Re: Problem using session var

2005-05-11 Thread Lucas Bern
Hi! bean write tag just takes a bean under name key form the scope where you indicates with scope or with findAttrinute searching in every scopes if you omit the scope attribute. Once the bean is found, the tag, takes the value of the property attribute as String and -first replace the first

modules

2005-04-29 Thread Lucas Bern
Any resource that explains how to configure modules in struts??? thanks Lucas - 250MB gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del mundo Abrí tu cuenta aquí

Re: [OT] Looking for a tree control tag library

2005-04-29 Thread Lucas Bern
check it... http://struts.application-servers.com/ it helps to create tabs, trees, several UI components integrated with struts... tell if it works... Lucas Barnett, Brian W. [EMAIL PROTECTED] wrote: If you know of a good, configurable tree control tag library for use in jsp pages,

Re: Does struts really have to construct a new form bean every time?

2005-04-28 Thread Lucas Bern
I am makeing a custom tag that reder a chart with jfrechart... This custom tag take a dataSet ( an object that store data for generate the chart ), but, i have to set the content type to image, and when i use the tag, and the jsp page goes on rendering the rest of the page i get a

Re: graphics

2005-04-26 Thread Lucas Bern
/graphit.shtml On 4/25/05, Lucas Bern wrote: Hi guys! anything better than jFreeChart?... or at least free documented? Thanks! Lucas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

RE: graphics

2005-04-26 Thread Lucas Bern
oh oh oh!... AJAX, i have heard about that, but some requirements limit me to use it, i HAVE to generate the chart on the server side ( would jave been wonderfull!!!, but, clients ) Yu, Ed [EMAIL PROTECTED] wrote: AJAX? -Original Message- From: Lucas Bern [mailto:[EMAIL

gui html

2005-04-26 Thread Lucas Bern
has anybody seen http://struts.application-servers.com waiting for coments... Lucas - 250MB gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del mundo Abrí tu cuenta aquí

logic:iterate problem...

2005-04-21 Thread Lucas Bern
Hi all... I get this exception trying to render options with logic iterate tag... javax.servlet.jsp.JspException: Cannot create iterator for this collection My action just get a List form a Srevice layer and store it in session scope under Globales.AreaPersonal.MODULOS_KEY. logic:iterate

Re: logic:iterate problem...

2005-04-21 Thread Lucas Bern
Weber [EMAIL PROTECTED] wrote: I think your List reference is probably null. Also, have you looked at html:options and html:optionsCollection? Erik Lucas Bern wrote: Hi all... I get this exception trying to render options with logic iterate tag... javax.servlet.jsp.JspException: Cannot create

Re: logic:iterate problem...

2005-04-21 Thread Lucas Bern
Great! it works fine... thanks Jeff and Erik. Lucas Jeff Beal [EMAIL PROTECTED] wrote: From http://struts.apache.org/userGuide/struts-logic.html#iterate: collection: A runtime expression that evaluates to a collection probably evaluates to a String. What you need is name='' On 4/21/05, Lucas

Re: 500 No input attribute for mapping path /Logon

2005-04-21 Thread Lucas Bern
Hi! I think the input attribute must be setted with the value of the page where the errors of validation will be displayed... I mean. action path=/Logon type=logon.LogonAction name=logonForm scope=request validate=true input=yourErrorPage/ I wish it helps you Lucas T. B. [EMAIL PROTECTED]

Re: Concatinating 2 strings for a bean:message???

2005-04-05 Thread Lucas Bern
this way?: bean:message key='%=label.owner.section.info.+ ownerNumber %' / I wish it helps you Lucas [EMAIL PROTECTED] wrote: I am trying to make the following work without success: for a property of... label.owner.section.info.1 = Owner One Details -- Thanks... Mick Knutson

Re: Multi Step Forms

2005-04-04 Thread Lucas Bern
Hello, I'm Lucas, I'm new to the list... and I have a problem: An ActionForm that has an array of others ActionForms where each one has another array of ActionForms. So i nedd to present the first form in a JSP page... One of the fields of the last ActionForm, the one in the lowest level, is