Using Scroll Bars

2002-11-25 Thread Alok Garg
Hello, If I have 3 jsp pages to included in a template. Like a.jsp b.jsp c.jsp If I want to display a scrollbar in the b.jsp as the data in it is going to be very big. Thanking you Alok

RE: Using Scroll Bars

2002-11-25 Thread Andrew Hill
If you are only targetting the newer browsers you might be able to achieve this using CSS-P stylesheets - have a look at the overflow attribute - though I could never get it to work in Netscrap6 - just in IE and didnt take it very far (quick experiment only), maybe its not standard?. If thats not

Problem with actionForm scope

2002-11-25 Thread Yann Verlynde
Hello, It seems that I lost my attributes of the form. It seems that my form is reinitialized when the form is redisplayed. My form is well defined in my struts-config.xml file as to be used in session scope. However, I would like to keep these parameter because I would like to fill the form at

RE: Problem with actionForm scope

2002-11-25 Thread Andrew Hill
Well, if your form is defined as using session scope it should work - you will retain the same form object. In this case you may need to take a look at what your reset() method is doing as this is called on submit each time before the form values are populated from the request. If screen A has

Re: Problem with actionForm scope

2002-11-25 Thread Gemes Tibor
2002. november 25. 10:16 dátummal Yann Verlynde ezt írtad: It seems that I lost my attributes of the form. It seems that my form is reinitialized when the form is redisplayed. My form is well defined in my struts-config.xml file as to be used in session scope. However, I would like to keep

AW: java.sql.Date again!!

2002-11-25 Thread Andreas Langmann
hmmm... make the following files... package de.km.bw.estat.struts.utils; import java.sql.Date; public class DateWrapper extends java.sql.Date { static java.text.DateFormat df = new java.text.SimpleDateFormat(dd-MM-); public static void setFormatStr(String formatStr) { df = new

Re: java.sql.Date again!!

2002-11-25 Thread Gemes Tibor
2002. november 25. 06:11 dtummal Slava_L ezt rtad: Well, are there any changes about java.sql.Date-in-Struts problem? What is the best appropriate way to solve the representation poblem (i.e. when Date converts in non-localezed string like -MM-DD) ? For java.sql.Date the default format is

RE: Problem with actionForm scope

2002-11-25 Thread Andrew Hill
Hmm. It does seem a bit counterintuitive. Ill post this reply back to the list as well to see if anyone else has an idea. -Original Message- From: Yann Verlynde [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 17:35 To: [EMAIL PROTECTED] Subject: Re: Problem with actionForm

AW: java.sql.Date again!!

2002-11-25 Thread Andreas Langmann
-Ursprngliche Nachricht- For java.sql.Date the default format is -mm-dd. You can change it however with the following key in your resourcebundle: org.apache.struts.taglib.bean.format.sql.date=mm/dd/ no, that will not work. in beta-2 this key is not used correctly... (look into

[OT] strange connection problem - 2nd try

2002-11-25 Thread Hirschmann, Bernhard
Hello struts user! Second try with my problem. Maybe someone has a clue? -Ursprüngliche Nachricht- Von: Hirschmann, Bernhard Gesendet: Freitag, 22. November 2002 13:35 An: '[EMAIL PROTECTED]' Betreff: [OT] strange connection problem Hello! I have a strange problem with a socket

Re: Problem with actionForm scope

2002-11-25 Thread Gemes Tibor
2002. november 25. 10:39 dátummal Andrew Hill ezt írtad: Thanks for the answer, My reset method is empty. I have one JSP Page and one form class, but I would like to return on my JSP page after the user has chosen a value in a select tag. The form class is populated with its value and my

StrutsTestCase

2002-11-25 Thread Marco Fabbri
Has someone setup it (http://strutstestcase.sourceforge.net/) on WSAD ? (Websphere Studio Application Developer) Thanks a lot in advance. Marco Fabbri

Re: java.sql.Date again!!

2002-11-25 Thread Slava_L
duz it work in struts 1.0.x ? never heard about thes keys, where i can find more keys ? - Original Message - From: Gemes Tibor [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, November 25, 2002 5:36 PM Subject: Re: java.sql.Date again!! 2002. november 25.

Re: AW: java.sql.Date again!!

2002-11-25 Thread Gemes Tibor
2002. november 25. 10:39 dtummal Andreas Langmann ezt rtad: no, that will not work. in beta-2 this key is not used correctly... (look into the sources or give it a try). How is it possible than that it is working for me? Of course I looked into the source otherwise I couldn't have find these

Programatically define Tiles Definitions (Struts Nightly)

2002-11-25 Thread Ove Ranheim
Since the Template Tag now is deprecated, how do I mangage to solve this issue with Tiles? ContentMap cm = ContentMap contentMap = new ContentMap(); contentMap.put(top, new Content(page1.java, false)); contentMap.put(left, new Content(page2.java, false));

AW: AW: java.sql.Date again!!

2002-11-25 Thread Andreas Langmann
Thats it. I use input fields and a german date format Uhh, maybe input fields with java.sql.Date? I convert them by myself with this mask as well, thou I plan to use a custom SqlDateConverter class for this task. Soon soon it'll come. You can re-use my DateWrapper Class (prior posting

Re: AW: java.sql.Date again!!

2002-11-25 Thread Slava_L
But is it possible to hide DateWrapper behind java.sql.Date ? i wish to use JDBC type in my FormBean - Original Message - From: Andreas Langmann [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, November 25, 2002 6:57 PM Subject: AW: AW: java.sql.Date again!!

XML Include for validation.xml

2002-11-25 Thread Andreas Langmann
Hello, i tried the following: ** ?xml version=1.0 encoding=ISO-8859-1 standalone=yes ? !DOCTYPE validation [ !ENTITY a SYSTEM file://C:/Programme/eclipse/workspace/appl/build/webapp/WEB-INF/validation/ validation-a.xml !ENTITY b SYSTEM

AW: AW: java.sql.Date again!!

2002-11-25 Thread Andreas Langmann
Hmmm make a constructor accepting java.sql.Date for DateWrapper and a getDate() method returning java.sql.Date. I have no idea how to do more integration any ideas? greetings, Andreas -Ursprngliche Nachricht- Von: Slava_L [mailto:[EMAIL PROTECTED]] Gesendet: 25.11.2002 12:01

Re: AW: java.sql.Date again!!

2002-11-25 Thread Slava_L
In your recent msg you posted 3 classes and as i can see one for String to Date (DateBeanUtilsConverter), the second (StringBeanUtilsConverterDate) for Date to String - duz Struts invoke it instead of Class.toString method ? - Original Message - From: Andreas Langmann [EMAIL PROTECTED]

AW: AW: java.sql.Date again!!

2002-11-25 Thread Andreas Langmann
That would be nice no, for display struts uses DateWrapper.toString(), the converters are used for filling formBeans If you register these Converters for java.sql.Date, the display-format would be wrong but you could change the display-format manually (in the jsp page)

Re: Forwarding and File Download problem

2002-11-25 Thread Pontus Jonsson
On tor, 2002-11-21 at 07:28, Eddie Fung wrote: Also the dialog box that IE pops up says that you are downloading the file: action class name from localhost. This is misleading as the actual dialog box that is next presented correctly names the output file name that I have set up. How

FrmameWork and Design Pattern

2002-11-25 Thread Brijesh NK
Hi, I am totally confused with the word FrameWork and Design Patters. Could any body explain the distinct difference between these two. Or how these words are related to each other? Thanks Regards Brijesh -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

RE: Help :: Dyna forms and Validation

2002-11-25 Thread Jordan Thomas
No, I am actually using the workflow extension which requires one to use the performAction() method. Also, I am using a nightly build of struts from about a week ago. Thanks Jordan -Original Message- From: Billy Bacon [mailto:[EMAIL PROTECTED]] Sent: Friday, 22 November 2002 1:19 PM

Re: AW: java.sql.Date again!!

2002-11-25 Thread Gemes Tibor
2002. november 25. 10:31 dátummal Andreas Langmann ezt írtad: static { DateBeanUtilsConverter dateConverter = new DateBeanUtilsConverter(); dateConverter.setFormatPattern(dd.MM.); StringBeanUtilsConverterDate myStringConverter = new StringBeanUtilsConverterDate();

Re: java.sql.Date again!!

2002-11-25 Thread Slava_L
while i wuz playin' with these convertors i could not make second convertor StringBeanUtilsConverterDate excuted. When exactly Struts will invoke it - Original Message - From: Andreas Langmann [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, November 25, 2002

Re: RE: [ANNOUNCE] O'Reilly Struts Book Now Available

2002-11-25 Thread Chuck Cavaness
Wendy, That's a great question that I don't know the answer to. I would direct that question directly to O'Reilly at [EMAIL PROTECTED] Chuck From: Wendy Smoak [EMAIL PROTECTED] Date: 2002/11/24 Sun PM 10:20:27 EST To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE:

AW: AW: java.sql.Date again!!

2002-11-25 Thread Andreas Langmann
i had tested it inside the execute method, and all worked fine. It will slow down the execute a bit, but i could'nt realize a change ;-) Better way would be convertutils use a context-object to set format-strings... but i think a solution for this problem could be in next release And your

AW: java.sql.Date again!!

2002-11-25 Thread Andreas Langmann
hmmm... for conversion from form-bean to a displayable string, struts uses DateWrapper.toString(). it should use the converter instead, but that dont work. Bug in struts?! Might its no bug and this class is used for other cases... Had you set a break point and debugged the thing? greetings,

javax.servlet.ServletException: Missing message for key index.title

2002-11-25 Thread ravi shankar
Hi friends, I've got the following error, which i got while opening a jsp file. javax.servlet.ServletException: Missing message for key index.title at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:461) at

Re: javax.servlet.ServletException: Missing message for key index.title

2002-11-25 Thread kiuma
I suppose you haven't defined the index.title value in your MessageResources.porperties. ravi shankar wrote: Hi friends, I've got the following error, which i got while opening a jsp file. javax.servlet.ServletException: Missing message for key index.title at

Re: javax.servlet.ServletException: Missing message for key index.title

2002-11-25 Thread ravi shankar
I suppose you haven't defined the index.title value in your MessageResources.porperties. Hi thanx for replying. Yup, I've the file and the 'index.title' is defined. i am using 'ApplicationResources.properties' file which i got it in struts-example application which i downloaded from the site.

Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Foong Tzer
Dear Struts supporter, There seems to be a real world problem with using Struts (well, not really Struts, but JSP Tag Libraries). It seems despite zero java coding on the JSP pages, those 'funny' tags are still not digest-able by average graphic designers. I mean, if they were to use Macromedia

Re: FrmameWork and Design Pattern

2002-11-25 Thread Foong Tzer
On Mon, 25 Nov 2002 05:06:07 +0530, Brijesh NK [EMAIL PROTECTED] said: Hi, I am totally confused with the word FrameWork and Design Patters. Could any body explain the distinct difference between these two. Or how these words are related to each other? Framework? Hmmm, some may argue that

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread vellosa
Haha! This whole idea of J2EE where we have seperation of roles hasn't quite happened has it. The idea that there are business process programmers, database programmers, front end guys etc. In the end it's always the same person fulfilling all the roles. On the projects that I have been on

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Gemes Tibor
2002. november 25. 14:49 dátummal [EMAIL PROTECTED] ezt írtad: Haha! This whole idea of J2EE where we have seperation of roles hasn't quite happened has it. The idea that there are business process programmers, database programmers, front end guys etc. In the end it's always the same person

Re: [ANNOUNCE] O'Reilly Struts Book Now Available

2002-11-25 Thread Martyn Inglis
Just seen this, interested by the safari site, whats the feedback on it's usefulness? Sounds too good to be true! (if my company'd pay for it too! ) Martyn Chuck Cavaness wrote: Wendy, That's a great question that I don't know the answer to. I would direct that question directly to

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Foong Tzer
C'mon guys. I've seen many great Struts website look feel (Definitelly generated by a graphic artist tool). I'm sure someone here has got some good experience to share? On Mon, 25 Nov 2002 13:49:14 + (GMT), [EMAIL PROTECTED] said: Haha! This whole idea of J2EE where we have seperation

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Brian Hickey
I don't think management of a development staff was a goal of J2EE :o) It is separation of process and/or skill sets that Struts/MVC provides for. Whether this happens or not is up to people, not software... yes? The method you refer to in your last paragraph is quite common and works quite

RE: javax.servlet.ServletException: Missing message for key index.title

2002-11-25 Thread Taariq Levack
pls could you tell me what files has to be in which folder.. thanx ravi its not so important where you keep the ApplicationResources.properties file, and afaik its not even important what you name it, as long as its properly defined in your web-inf/struts-config.xml file message-resources

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Cyber.Zombie
My last JSP job did not suffer that problem -- the graphics designer also did 100% of the JSP work. This on a post 1.0.2 nightly with integrated nested extensions (I had convinced the client on the benefits of the nested extension and they prefered integrated rather than in a separate

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Arron Bates
It's up to your designers. I've had designers that throw their hands up at anything under the bonnet at all. Being a graphic designer myself, I don't mind cutting code at any level. :) The trick with anything like this is find the middle ground for your team. For some, it's just having them cut

RE: AW: java.sql.Date again!!

2002-11-25 Thread Nelson, Laird
-Original Message- From: Slava_L [mailto:[EMAIL PROTECTED]] But is it possible to hide DateWrapper behind java.sql.Date ? i wish to use JDBC type in my FormBean As a rule, FormBeans should only work with Strings. For example, suppose the date field on your FormBean is supposed to

RE: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Chappell, Simon P
Our recently completed Struts-based system had very simple, low graphic screens and so we elected not to have a page designer. For a laugh, we slapped a background on the screen of one of my digital photos that I had taken of a recent sunset at a local state park (after fading it so people

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Foong Tzer
On Mon, 25 Nov 2002 08:10:45 -0600, Cyber.Zombie [EMAIL PROTECTED] said: My last JSP job did not suffer that problem -- the graphics designer also did 100% of the JSP work. Thats sounds quite fair. But most of the real expert graphic artist here knows nuts about programming. What's more if

Re: Struts 1.1b2 and Sybase EAServer 4.1.0 (Jaguar)

2002-11-25 Thread Eugene Gunichev
Servlet definition and mapping: servlet servlet-nameaction/servlet-name display-nameaction/display-name servlet-classorg.apache.struts.action.ActionServlet/servlet-class init-param param-namedebug/param-name param-value3/param-value /init-param init-param

ActionForm instance lost

2002-11-25 Thread Lenharcik, Juraj
Hi, I overwrite my ActionForm instance with a new one, which is deserialized from xml. Test t = (Test) form; . t = u.unmarshall(reader); // XML -- Java When I formward to the JSP, the values from the Test ActionForm are not accessible. If I write this: request.setAttribiute(myform,

AW: AW: java.sql.Date again!!

2002-11-25 Thread Andreas Langmann
As a rule, FormBeans should only work with Strings. For example, suppose the date field on your FormBean is supposed to be populated from a user's form submission. What if the user types in a bad value, and you want to return to the submission page to flag the error with the problematic field

RE: XML Include for validation.xml

2002-11-25 Thread James Mitchell
At the same level, have you tried: !ENTITY c SYSTEM validation-c.xml ^ -- James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org If you were plowing a field, which would you rather use? Two strong oxen or 1024 chickens? - Seymour Cray (1925-1996), father

RE: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Míguel Ángel Mulero Martínez
Have you looked at this? http://jakarta.apache.org/taglibs/doc/ultradev4-doc/intro.html I don't have tried it, so if you do it please comment to group. -Mensaje original- De: Foong Tzer [mailto:[EMAIL PROTECTED]] Enviado el: lunes, 25 de noviembre de 2002 14:31 Para: Struts Users

AW: XML Include for validation.xml

2002-11-25 Thread Andreas Langmann
At the same level, have you tried: !ENTITY c SYSTEM validation-c.xml ^ yes parser says something about relative uri not allowed without base uri. think it's a bug in common-validation? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

Validation framework not multi-app aware.

2002-11-25 Thread Maarten . DeCock
Hi, When using multi-applications in struts and using a different validator.xml for each sub-application, the validator framework fails to work. No validation occurs. -- The plugin configuration of the main app: plug-in className=org.apache.struts.validator.ValidatorPlugIn set-property

Re: Re: [ANNOUNCE] O'Reilly Struts Book Now Available

2002-11-25 Thread Chuck Cavaness
As far as the Struts book showing up on Safari, I just sent an email off to the marketing person for my book and asked her. I'll let you know as soon as I hear something. Regarding the usefulness of the site, I've never used it but I'm sure someone else can comment. Chuck From: Martyn

Re: Validation framework not multi-app aware.

2002-11-25 Thread Eddie Bush
You have said nothing about which release you're working with. If it's a nightly build it should work - if you're not using a nightly build, I'd suggest you grab a nice, fresh binary off the shelf and give things a go. The validator should be there for modules (that's what we call them now -

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Daniel H. F. e Silva
Hi Foong, After some headaches and some experience, i do the following: 1 - We (developers and programmers) write a clear requirement doc about a graphical interface, with all data that will be displayed, data type and this kind of stuff. 2 - Our designers develop all graphical interface

RE: Validation framework not multi-app aware.

2002-11-25 Thread Maarten . DeCock
I'm currently using version 1.1 b2. I'll give the nightly build a try. Thanx for your reply, Maarten -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: maandag 25 november 2002 17:06 To: Struts Users Mailing List Subject: Re: Validation framework not multi-app aware.

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread vellosa
I don't think management of a development staff was a goal of J2EE :o) It is separation of process and/or skill sets that Struts/MVC provides for. Whether this happens or not is up to people, not software... yes? Indeed the seperation of the tasks in your project is up to the people

RE: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Chappell, Simon P
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 9:07 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Struts: a Graphic Artist blessing or curse? snip FWIW, graphic design and Java development generally use different

Re: FrmameWork and Design Pattern

2002-11-25 Thread Eddie Bush
Have you ever seen a new building going up? You know - when there's just steel beams there? That would be a framework (roughly speaking). Now, the design patterns would deal with how the beams should be situated so that the building will hold-up over time -- or so that the building may be

Action Name

2002-11-25 Thread edgar
Does anyone know how to easily get the current action name (other than decomposing it from the URI)? The idea is I am writing a class of generic reporting servlets and I would like to stick in a simple form or link to return to the prior action. Any ideas would be appreciated. Edgar. -- To

RE: Validation framework not multi-app aware.

2002-11-25 Thread Hohlen, John
Eddie, I just to make sure I understand your statement before I spend a bunch of time on this. Modules (formerly sub-apps) work with the rest of the Struts 1.1 (i.e. the Validation framework, etc) -- in the latest nightly build. I'm just double checking b/c I spent a bunch of time when Struts

[tiles] insert: Illegal to flush within a custom tag...

2002-11-25 Thread Etienne Labont
Hi, I'm using the tabs layout and it works well. But I have this problem when I try to insert tab bodies inside a layout made of custom tags: I get the error message Can't insert page 'whatever-page.jsp' : Illegal to flush within a custom tag The layout comes out right but this message is

Does the current version of struts run with tomcat-3.2.4?

2002-11-25 Thread Zsolt Koppany
Hi, we do have to support tomcat-3.2.4 and I just would like to known whether struts-1.1 runs with tomcat-3.2.4. Zsolt -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Migrating from 1.0.2 to 1.1

2002-11-25 Thread Francesco Russo
Hi everybody, I have a question concerning how to move a piece of code working with the Struts 1.0.2 release to the upcoming 1.1 stable one. What I do is: public myActionServlet extends ActionServlet { ... public Class getClass(String fullyQualifiedName) { FastHashMap fhm =

RE: set a html:checkbox checked

2002-11-25 Thread Mouratidis, Georg
Hi, Oliver did you get any response. i'm looking for the same. could you send me your solution please? thx Georg M. -Original Message- From: Oliver Kersten [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 21. November 2002 17:34 To: [EMAIL PROTECTED] Subject: set a html:checkbox checked

[Taglib] A common taglibs file

2002-11-25 Thread Sri Sankaran
Do you know if there is any runtime overhead incurred by having unnecessary taglib directives in a JSP file? I am thinking of creating a monolithic taglibs.jsp file that just contains the taglib directives that *any* page in my application would need. Then when adding a page to the

RE: set a html:checkbox checked

2002-11-25 Thread Karr, David
In your Action class which forwards to the JSP, you have to have code which sets the property associated with the checkbox to either true, yes, on, or the value set in the value attribute. -Original Message- From: Mouratidis, Georg [mailto:[EMAIL PROTECTED]] Hi, Oliver did you

RE: set a html:checkbox checked

2002-11-25 Thread Mouratidis, Georg
any examples please. i do not understand how to do it. thx -Original Message- From: Karr, David [mailto:[EMAIL PROTECTED]] Sent: Montag, 25. November 2002 17:34 To: Struts Users Mailing List Subject: RE: set a html:checkbox checked In your Action class which forwards to the JSP, you

RE: set a html:checkbox checked

2002-11-25 Thread edgar
Don't use the struts tag. The struts checkbox tag assumes all checkboxes are off. Use something like input type='checkbox' name='yourbeanproperty' checked As long as you use the name which corresponds to the form bean property struts will correctly link the data back to your form.

Re: Migrating from 1.0.2 to 1.1

2002-11-25 Thread David Graham
If the ActionServlet has instantiated an Action then it has already been loaded by the class loader and won't be loaded again by your servlet. I suggest removing that piece of code entirely. David From: Francesco Russo [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL

RE: set a html:checkbox checked

2002-11-25 Thread edgar
I believe the value attribute in the case of the textbox is the 'text' returned by a 'checked' checkbox, not the boolean value of the checkbox. Edgar -Original Message- From: Karr, David [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 11:34 AM To: 'Struts Users Mailing List'

RE: set a html:checkbox checked

2002-11-25 Thread Mouratidis, Georg
The poblem is not to post back, the problem ist to populate the checkbox checked. I would like to set the checked attribut dynamically. something like : if tablecolumn.value == 1 then checkbox = checked any idea thx georg M. Don't use the struts tag. The struts checkbox tag assumes

validator-rules.xml with netscape - bug report.

2002-11-25 Thread Arik Levin ( Tikal )
HI all. I have this cross platform issue and when it comes to validator-rules.xml I had a problem which I wanted to share with you. In the validator-rules.xml the parsing popup alert message has a bug in netscpae. The line alert(fields.join('\n')); is fine for explorer

Re: validator-rules.xml with netscape - bug report.

2002-11-25 Thread David Graham
Netscape does support the join function as documented here: http://wp.netscape.com/eng/mozilla/3.0/handbook/javascript/ David From: Arik Levin ( Tikal ) [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject:

RE: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Joe Germuska
This is an interesting thread, as we have a lot of challenges working with our artists to create JSPs for use with Struts. Of course, I would suggest that the issue has little to do with Struts, and a lot to do with the state of JSP tools. I think that JSP 2.0 and Java Server Faces (JSF) both

RE: BasicDataSource data source usage.

2002-11-25 Thread Anthony Mutiso 2
Thanks Craig and David. It was the differences in the nested setter property names. BasicDataSource required a driverClassName and username in place of the GenericDataSource ones of driverClass and user. I should have been able to find this in the documentation but somehow over looked it. Thanks

Nested Iterate Tag and indexId problem

2002-11-25 Thread david . fields
I am using the nested tags with Struts 1.02. I want to be able to dynamically set a call to a javascript function. I want to pass in the row number to the function. I currently have nested:iterate property=asrTranList type=abbott.ai.tcgm.entities.AsrTran indexId=idx tr

THIS IS TRUE -- PEOPLE SHOULD PLAN FOR REALITY -- Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread micael
This is exactly right, and application frameworks should begin working to this reality, rather than some ideal, which is what is happening now. This is really the way the whole http/tcp/ip protocol would suggest. The practice is mirrowing what makes sense. Micael At 01:49 PM 11/25/2002

NoClassDefFound on validationForm in WAR

2002-11-25 Thread Joe Wyatt
I've seen several similar problems in the archives, but none of the solutions seem to work for my problem. I'm using Struts 1.1b2 with Weblogic servers (tried both 6.1sp3 and 7.0). In my WAR the WEB-INF/lib contains all of the commons and struts jars. The WEB-INF/classes directory contains my

Re: FrmameWork and Design Pattern

2002-11-25 Thread Craig R. McClanahan
On Mon, 25 Nov 2002, Brijesh NK wrote: I am totally confused with the word FrameWork and Design Patters. Could any body explain the distinct difference between these two. Or how these words are related to each other? To me (at least informally), there are a couple criteria that

Re: Nested Iterate Tag and indexId problem

2002-11-25 Thread Patrice
Perhaps I made a mistake, but nested tags are available since Struts 1.1: I think they are not available on Struts 1.02. Best regards Patrice - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, November 25, 2002 6:33 PM Subject: Nested

RE: FrmameWork and Design Pattern

2002-11-25 Thread edgar
Excellent description of the two. I think of them a little differently which might help. Design Patterns are a language for developers to communicate with. Very useful for discussions of how to accomplish things. Frameworks are projects which implement design patterns. Edgar

Re: AW: java.sql.Date again!!

2002-11-25 Thread Craig R. McClanahan
On Mon, 25 Nov 2002, Slava_L wrote: Date: Mon, 25 Nov 2002 19:01:26 +0800 From: Slava_L [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: AW: java.sql.Date again!! But is it possible to hide DateWrapper

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Craig R. McClanahan
On Mon, 25 Nov 2002, Foong Tzer wrote: Date: Mon, 25 Nov 2002 05:31:26 -0800 From: Foong Tzer [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED], Struts Users Mailing List [EMAIL PROTECTED] Subject: Struts: a

RE: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread Craig R. McClanahan
On Mon, 25 Nov 2002, Chappell, Simon P wrote: If Craig felt that was good enough for the struts-example, then my goodness, it's good enough for me! ;-) As I've said a couple of times, struts-example is pretty much my resume documenting my GUI design skills. Good thing I know a little Java

Re: Struts 1.1b2 and Sybase EAServer 4.1.0 (Jaguar)

2002-11-25 Thread Craig R. McClanahan
Struts does not support multiple servlet mappings to the same action servlet instance. Craig On Mon, 25 Nov 2002, Eugene Gunichev wrote: Date: Mon, 25 Nov 2002 16:17:25 +0200 From: Eugene Gunichev [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users

Placing jsp tags within nested tags not working.

2002-11-25 Thread david . fields
I'm having problems trying to nest code within a nested tag. nested:text property=actionCode maxlength=1 size=1 styleClass=maintWidth1 onchange=makeEditDirty('hideOnEdit','showOnEdit','%=chkBxId%'); onkeyup=return autoTab(this, 1, event); / This doesn't work. The output looks like

Re: [Taglib] A common taglibs file

2002-11-25 Thread Craig R. McClanahan
On Mon, 25 Nov 2002, Sri Sankaran wrote: Date: Mon, 25 Nov 2002 11:34:18 -0500 From: Sri Sankaran [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts-User [EMAIL PROTECTED] Subject: [Taglib] A common taglibs file Do you know if there is any runtime overhead

Re: Struts: a Graphic Artist blessing or curse?

2002-11-25 Thread micael
The answer is below. That is really it. Let them build the GUI, then you massage it. That is the easiest way to go about things. If someone has something better, I don't know it. This way of doing things is pretty easy. The backend guy does not have to know the details of the gui, and

RE: Placing jsp tags within nested tags not working.

2002-11-25 Thread Karr, David
request-time scriptlet expressions have to be the ENTIRE attribute value, not just a portion of it. If you want to use a scriptlet, you'll have to concatenate strings together, something like this: onchange='%= makeEditDirty(\'hideOnEdit\',\'showOnEdit\',\' + chkBxId + \'); %' I have no idea

Forwards and Frames

2002-11-25 Thread Shryock, Chad
Hello, Background information: I have a page split into two frames, top and bottom. I have a form in the top part, that displays a list of messages. The user then selects the messages they want displayed and they press a button and the button forwards the information to the bottom form? How do I

html: field question

2002-11-25 Thread Shryock, Chad
Hello, I have a page that has a large form. I need to be able to make some fields read-only dynamically for some views of the table. I tried html:text property=userID readonly=bean:write name=user property=userReadOnlyState//. Thanks, Chad Shryock. -- To unsubscribe, e-mail: mailto:[EMAIL

Re: html: field question

2002-11-25 Thread Patrice
You can't use tags in tags: try this: bean:define id=readonly name=user property=userReadOnlyState/ html:text property=userID readonly=%= readonly%/ Hope it helps Patrice - Original Message - From: Shryock, Chad [EMAIL PROTECTED] To: Struts Users Mailing List (E-mail) [EMAIL

RE: html: field question

2002-11-25 Thread Karr, David
You can't nest JSP tags inside an attribute value of a JSP tag. You'll have to use a scriptlet expression for the readonly property. You might do it like this: bean:define id=roflag name=user property=userReadOnlyState/ html:text property=userID readonly=%= roflag %/. If you were using

RE: Forwards and Frames

2002-11-25 Thread Kristian Duske
Hi, Background information: I have a page split into two frames, top and bottom. I have a form in the top part, that displays a list of messages. The user then selects the messages they want displayed and they press a button and the button forwards the information to the bottom form? How do

Re: html: field question

2002-11-25 Thread David Graham
You can't use a custom tag in another custom tag's attribute. You can use a jsp expression in the attribute though. David From: Shryock, Chad [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List (E-mail) [EMAIL PROTECTED] Subject: html:

Question: Struts-EL Release

2002-11-25 Thread Hohlen, John
I have a question about whether there will be an official release of the Struts-EL subproject. I'm currently using a nightly release (11/14) of Struts-EL with Struts 1.1 B2. Since there is no release of Struts-EL, I was wondering if one nightly build is better than the other -- almost like a

RE: [tiles] insert: Illegal to flush within a custom tag...

2002-11-25 Thread Etienne Labont
Solved it by using the jsp:include instead of the tiles:insert... Thanks anyway... -Original Message- From: Etienne Labonté [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 11:01 AM To: Struts Users Mailing List (E-mail) Subject: [tiles] insert: Illegal to flush within a

Re: set a html:checkbox checked

2002-11-25 Thread Patrice
I think you should set the property of the form in an action, that will forward to your JSP. In this action, set the property corresponding to your check box at true: MyForm myForm = (MyForm) form; if (tablecolumn.value == 1) { myForm.setCheckboxProperty = true; } Then, the check box

RE: Question: Struts-EL Release

2002-11-25 Thread Karr, David
Normally the nightly build is pretty stable. Unfortunately, some unknown problem made the Struts-EL distribution disappear from the nightly builds between the 18th and the 24th of this month. The build on the 25th appears to have it. Yes, Struts-EL will be in the 1.1 release. With respect to

  1   2   >