Hi all,
I'm using in a JSP for submit buttons. As this tag has a "value"
attribute, I'd like to know how to use it:
I can get this value when using Mozilla, but IE doesn't submit the value (only the x/y
position of the click inside the
image).
Is this attribute only present for HTML spec conf
I've use ted husted tip http://www.husted.com/struts/tips/001.html
When I use IE and validate my form by hitting [return], form is posted with button
coordonates [x=0/y=0], so using the
tip code, it should look like I've used the button !
I could add a test on x/y to associate (0,0) with "not s
First, you don't need to set taglibs in your web.xml.
Check that your web.xml declares "2.3" servlet api (in DOCTYPE)
It should work
Nico.
> I've tried to use JSTL with my web app, and it's not working!
> I downloaded jstl 1.1, and copied jstl.jar, and standard.jar to WEB-INF/lib.
> I put the
Hi all,
I've got some troubles using html:rewrite on a Tomcat(4.1.30)/Apache(2.0.49) server:
My tiles base layout uses to include a link to the CSS stylesheet :
On first access to the page, rewrite adds jsessionId to the URL :
After some Google / Apache list archives search, i solved my problem (and notice it
was full of topic on this list ;-)
For other peoples having same troubles :
I've added mod_rewrite to my apache (compile with --enable-module=rewrite)
I've set this rule in httpd.conf :
RewriteEngine on
Hi,
What is the 'cleaner' way to define and populate a map to be used with
tags ?
Notice I can use JSTL.
Nico.
Our name has changed. Please update your address book to the following format:
"[EMAIL PROTECTED]".
This message contains information that may be privileged or confidential and
t;
>
>
> --
> James Mitchell
> Software Engineer / Open Source Evangelist
> EdgeTech, Inc.
> 678.910.8017
> AIM: jmitchtx
>
> - Original Message -
> From: "Nicolas De Loof" <[EMAIL PROTECTED]>
> To: "Struts Users Mailing List"
On first request, a session is created. Tomcat (or any other servlet container) wan
use two mecanism to handle sessions
: cookies or URL rewriting (add a ";jsessionid=...").
Preference is for cookies, because it doesn't need to change URLs in pages, but on
first request, Tomcat has no way to
kn
I've had such troubles. I don't know if it comes from struts (common-beanutils) way to
introspect object to discover
accessor methods, or if javaBeans spec describes it so. I've notice you will get such
errors when you define getter
return type != setter param type or have multiple setters with
pse refactoring (rename) tools made it easy.
Nico.
> Thanks Nico. Does it happen consistently for you, or it's
> only on certain properties?
>
> - John
>
> > -Original Message-
> > From: Nicolas De Loof [mailto:[EMAIL PROTECTED]
> > Sent: Friday, June
You can use this :
Nico.
- Original Message -
From: "Pavlikus" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, June 21, 2004 4:04 PM
Subject: html-el:link and url from resources
> Hi all. My menus defined in resou
Hi all,
I've to make some load tests on my app.
Our customer wants the appli to handle "300 simultaneous users". To translate this
requirement into request per second,
how many time do you consider an 'active web user' to wait between 2 request ?
Nico.
Our name has changed. Please update y
mmon and most time critical
usecases for your system. Then open the flood gates and send a tidal wave of traffic
against the system. I'm sure that
realistically simulated usage is wonderful, but for the rest of us, just hammer the
system until it begs for mercy and
then you'll know what i
database access should be done into DAO (Data Access Objects) with CRUD methods
(CReate Update Delete), having beans as
parameters and return values. Some call those beans 'domain model beans'.
DAO should have a way to get a JDBC connection according to current transaction. You
can pass a conne
You should put the configuration object into application scope (servletContext) so it
can be accessed from any servlet /
jsp of your app.
You can put MyXMLParserServlet itself into servletcontext and access it from struts
action by:
MyXMLParserServlet conf = (MyXMLParserServlet)
getServlet().g
View
http://jakarta.apache.org/struts/userGuide/struts-html.html#link
Nico.
> hi list,
>
> I am not good in jsp views. Can someone tell me the way to accomplish
> the below?
>
> I wish to generate is link View
> and i am doing this.
>
> =
>
>
>
>
>
>
>
Can't you check it out from apache CVS ?
tag for 1.0.2 is "standard-102"
> I'm looking for the source distribution for the Jakarta Standard taglib
> v1.0.2. I am unable to find it archived on the Jakarta website. Can
> anyone point me to a copy?
>
> Thanks,
>
> Derek Richardson
>
> -
You will need the JK (or JK2) connector to connect tomcat to apache :
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html
A simple "tomcat apache howto" gogle search will give you lot's of infos.
You have to
1. (compile and) add mod_jk module to your apache httpd server
2. set the A
Apache is handling static datas according to mod_jk rules for better perfs.
Apache can also handle HTTPS.
Apache has lot's of usefull modules that can be helpfull for any usage (stats, cgi,
perl ...)
Apache security is well known, tomcat does'nt need to be visible from internet (DMZ)
Tomcat http
gt; as well as apache with jk, even at delivering the static content.
>
> If you just have a couple of apps in an intranet type situation (you
> know how many users) its worth considering using tomcat's http server.
>
> Mark
>
> On 30 Jun 2004, at 09:34, Nicolas De Loof wrote:
>
You have to set a map of parameters to add to the link.
You may create the map in an action prior to your JSP, or use this in your JSP (if you
use JSTL) :
click me !
Nico.
> Hello listers. I sent an email about a week ago and haven't heard a blip. So I guess
> this simply isn't po
Simply create a javabean property 'myProperty' in your plugin class :
private String myProperty;
public void setMyProperty(String str) ...
public String getMyProperty() ...
Nico.
>
> I'm using struts 1.1 and need to set some parameters in my plugin
> definition.
>
> here is my plugin defi
You have to add some code into Struts tag handler, especially an attribute and setter
for your "onpaste" property.
For such cases, I use to create a taglib for my app that extends some struts tag, to
avoid having a non-standard Struts
lib and encourage developpers to create and use tags.
Nico.
Hi all,
just solved a strange problem and would like to share with you if you have some
suggestions :
My app needs to support IE 5.0 :(
We use CSS and I had designed my baseLayout.jsp like this :
It works
iles let you use just 1 or a few templates/layouts for many views,
> the maintenance is already manageable.
>
> Mark
>
> On 30 Jul 2004, at 11:35, Nicolas De Loof wrote:
>
> >
> > Hi all,
> >
> > just solved a strange problem and would like to share with you if y
They're is no 'stable' version of the 1.2.x branch. They're should be one soon. We use
1.2.1 (considered as 'beta') on
our application without troubles.
You may understand that a version is considered 'stable' when *lot's* of peoples use
it without having (unknown) bugs.
As current 1.2.x is use
Hi all,
I've started an opensource project to help managing application configuration.
Application code get configuration values
from a static util class: Configuration.getAsXXX(key) with XXX=String, Int, Date ...
Configuration is stored into
properties files, loaded from classpath or from file
in Struts 1.2.x, contrib struts-EL tags include tiles-el.
You may also use tomcat 5 (or any servlet 2.4 container) to get EL on every tag.
Nico.
> There does not seem to be a struts-tiles-el.tld - el tlds exist only for
> bean, html, and logic taglibs. Can I use EL with the Tiles tags?
>
> _
may also use a 2.4 servlet container.
Nico.
> Is there a way to use struts-EL tags with Struts 1.1?
>
>
> >From: "Nicolas De Loof" <[EMAIL PROTECTED]>
> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> >To: "Struts Users M
This should work !
Have you checked your /AddUserProfile.do is well configured ?
Are you using modules ?
Nico.
> My JSP file contains a link like this.
>
>
>
>
>
>
>
> This link points to AddUserProfile.jsp.
>
> When I click on the link, it gives invalid path err
I've had such a case before and solved it using a custom tag (sorry, old project,
don't have sources anymore)
It looked like this :
it used reflexion API to get Class object and read member. it used a Map to cache
values for perfs. Something like this
:
String key = className + "+" + me
General Availability:
http://struts.apache.org/acquiring.html
> Ted Husted wrote:
>
> > GA grade
>
> Pardon my ignorance; what does GA stand for?
>
> I assume that it's not General Admission?
>
>
> Thanks,
>
> Dave
>
>
>
>
1. thread-safe require no variable (instance or static) that a thread may consider to
be the only one to update. Read-only member (as a logger instance) can be used safely.
2. you can configure log4j to add the thread id to the log, so that a simple grep will
extract all logs for a request.
3.
taglibs must be set in the included JSP when using tag : it includes JSP
result, not JSP source code as
does <%@ include %>.
Nico.
- Original Message -
From: "vineesh . kumar" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 31, 2004 11:17 AM
Subject: problem with js
>From my experiments you only require to change taglibs URIs to new struts domain
http://struts.apache.org
You also have to update DTD refs in struts-config.xml and validation.xml
Nico.
> I was going to wait for a bit before I switched, but I have come across
> a discrepancy in IE and firefox
Hello,
I've submitted a patch that extends use of wildcard mappings to tiles definitions.
Please Wildcard users, could you try
it and give me feedback ?
You can download a patched struts build at
http://loof.free.fr/struts-1.2.3-wildcardtiles.jar
Nico.
Our name has changed. Please update
- JSP tags are translated into java code during JSP compilation BEFORE any request
processing.
- Javascript is executed by browser AFTER reponse has been built by server.
Tags must be 'statically' set in JSP
What do you ant to do ?
Nico.
>
> Can I add struts tags dynamically after loading t
Works fine for me (on 2 apps : one using tomcat 4 other using tomcat 5)
> Has anyone tried out Struts 1.2.4?
>
> If so can you feedback - positive or negative.
>
> Niall
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
JSTL :
Nico.
>
> Hello,
>
> Is there some sort of Struts tag that I can use to set the property of a
> bean?
>
> I have a small fragment that I want to look like this:
>
>
> <%-- Set the event.date property on formBean to a default value --%>
>
>
>
>
>
> It says that "if the event
Struts now uses tomcat-like version number, i.e. they're will be other 1.2.x struts
releases if required by new bugs or
enhancements applied on this branch.
We use 1.2.x on new projects since 1.2.0 (test) has been released.
Nico.
> Hi,
>
> What is the difference between General Avaibility and
- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, September 21, 2004 11:31 AM
Subject: Re: Assigning a DataSource to a Business Delegate on startup
> > you can use JNDI to get a DataSource (if you use tomcat see tomcat
> > documentation in order to s
Datasource support in struts is deprecated
JNDI is the J2EE compliant way to get Datasource, it is not tomcat dependant
It only requires to declare a resource-entry in your web.xml and to use your container
configuration to link this to a
container-managed datasource
Nico.
> This is a nice sol
In model !
Struts is a MVC framework without any 'M' support : you can use anything you want to
build your model.
> In the mailing list, I have read some people suggesting not to put
> business logics in Action class. Certainly, business logics should not
> be in JSP or Form class. Then where
I don't agree :
- My app will NEVER be anything else than a webapp
- We are 3 developpers working both on business and web
BUT we defined a business API using interfaces for business logic
Using this, we can change business tier for a mock one for application demo or testing
cases that may be d
Someone posted on this list a clean way to do this using jakarta-unstandard-taglib and
bind tag. Sometinhg like this
(not tested) :
Nico.
>
> On 2004-09-27 at 21:50:26 +0100, Adam Hardy wrote:
> > Just before this thread dies, on a closely related note, does anybody
> > have a nice way to
Did you try something like this :
...
Nico.
> Hi group!
>
> I have a somewhat complex application with tiles. I have a layout page
> which looks like this:
>
> <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
> <%@ taglib uri="/WEB-INF/
A link in HTML does not submit a form. Only submit inputs (buttons) an images input
does.
You can use javascript to do it (as you did), but then it overrides the href set on
the link (/myAction.do) and its
parameters.
Nico.
> I have a form with a htlm:link
>
> paramName="address" onclick="do
Hello,
I just discovered the use of BeanUtils.copyProperties to populate my formbeans from
business objets. I would like to
know where to configure my Converters (using ConvertUtils.register) ?
I use a static initialiser in my BaseAction class. Do you have something better to
suggest ?
Nico.
Hello,
I just discovered the use of BeanUtils.copyProperties to populate my formbeans from
business objets. I would like to
know where to configure my Converters (using ConvertUtils.register) ?
I use a static initialiser in my BaseAction class. Do you have something better to
suggest ?
Nico
Hello guys,
I've released the first plublic version (1.0.1) of a simple tool : XMLStubs.
It allows you to replace an API defined by interfaces by an emulated one declared in
XML files. Jexl language (same as
JSP EL) is used to add conditional behaviour.
For example, if you need some implementa
Take a look into the contrib/struts-el/lib folder !
Nico.
Ibha Gandhi a écrit :
Hi All,
From where can I download struts el tag libraries.
I downloaded jakarta-struts-1.2.4.zip, but it does
not contain struts-html-el tag libraries
Thanks,
Ibha
-
It seems you'r not encrypting the password but hashing it
explanation :
- pasword *encryption* can be reversed, using some secret key
- pasword *hashing* produces a unique String, that DOES NOT CONTAIN
infos about the password (cannot be reversed). The hash algorithm (MD5,
SHA...) is designed s
Hi all,
this mail is totaly of topic, so sory sory sory...
... but there is so much java masters on this list !
I have to replicate some datas between two servers running my app (with
a load balancer, but not using a cluster mode). We are going to build a
home-made solution, and I wonder if a
bd a écrit :
Just my two cents
I'll suggest storing the datas on a central database (which could be clustered
amongst your servers)
Le Lundi 13 Juin 2005 14:06, Nicolas De Loof a écrit :
Hi all,
this mail is totaly of topic, so sory sory sory...
... but there is so much java masters on this
Oracle is the only aproved database (clusterable or not). This is the
reason I was looking for a "rsync"-linke solution.
Nico.
delbd a écrit :
Le Lundi 13 Juin 2005 14:27, Nicolas De Loof a écrit :
Our customer defines architecture restriction for it's applications.
ou have to build the
say-the-other-one-that-the-data-has-been-updated logic by yourself. But
this is about 5 lines of code, so i don't think you should search for a
tool herefore.
On Mon, 2005-06-13 at 14:06 +0200, Nicolas De Loof wrote:
Hi all,
this mail is totaly of topic, so sory s
I've put it on
http://loof.free.fr/jakarta-struts-1.1-src.zip
Hope it will help you.
Nico.
Pilgrim, Peter a écrit :
Can anyone tell me where I can download the full Struts 1.1 source code
other than http://archive.apache.org/dist/struts/ which is being blocked
by my clients corporate securi
Hello all,
I've a requirement to replicate application context data in a 2 server
cluster (load-balanced). I know tomcat option to use in-memory session
replication. Is there anything similar for application context ?
Thanks for any suggestion.
Nico.
This message contains information that
You can use the EL-enable version of display tag to do this (assuming
Konstants.SESSION_USER_KEY = "users") :
Now, if you don't want to break constants usage, you may try to use
jakarta unstandard taglib to bind the static field from your Konstants
class to a pageContext variable :
(http://j
Here is my response to such questions :
1. Why do you prefer Struts over any other web application framework?
(Tapestry, JSF, Maverick, WebWork, etc)
I don't use Struts because I think it is the best framework. I use it because
my dev team has some experience using it. Having to change MVC framew
I get such a case recently : we are using Spring as IoC container. On
some situation we use a simple AOP interceptor.
Our customer have found on the net a benchmark comparing Spring vs
AspectJ vs AspectWerkz. The bench result was not good for Spring
(compared to AspectWerkz). The technical reas
You should define 2 mappings for detail :
a "/showEmployeeDetail" without validation (or a unique rule employeeId
required)
a "/updateEmployeeDetail" with validation.
Your action can be a dispatch action if you don't want to have 2 classes.
Nico.
Gaet a écrit :
Hi,
I have page with a list of empl
employee datas
Nico.
Gaet a écrit :
Thanks nicolas,
I know the dispatch action but I don't see how to use it with 2 mappings:
how the mappings "/showEmployeeDetail" and "/updateEmployeeDetail" will know
the method to execute in my dispatch action?
Thank you very much!
of EmployeeDetail.jsp like this :
Like this I don't need to change my actual Action class...
Is it well-designed like this?
Thanks
- Original Message -
From: "Nicolas De Loof" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List"
Sent: Wednesday, March 09, 2
Use Collections.sort(list, new Comparator() {...});
or Collections.sort(list) if your Plan class implements Comparable
Nico.
Krishna Mohan Radhakrishnan a écrit :
Hi all,
I have a doubt regarding sorting in array List.
I have an array List which contains array list objects of type Plan.
The Plan o
or Spring" mean?
/robert
Nicolas De Loof wrote:
I get such a case recently : we are using Spring as IoC container. On
some situation we use a simple AOP interceptor.
Our customer have found on the net a benchmark comparing Spring vs
AspectJ vs AspectWerkz. The bench result was not good for Sp
Validator has a built-in support for wizards
You have to include in your pages all form-bean fields (use hidden tag
for those the user doesn't have to edit in a page)
You also have to add a hidden input named "page"
Validator rule can use this page param to 'only' validate inputs prior
to a page
I'm using SecurityFilter and use the Principal to store the user ID. The
actions use the J2EE compliant request.getUserPrincipal(). Having
userId, they can call business objects.
Nico.
Günther Wieser a écrit :
i for one put the user object into the session, as i have a lot of method
calls agains
You can use jakarta unstandard taglib to "bind" a variable to the static
fiedl YES
Nico.
Vinicius Caldeira Carvalho a écrit :
Hello there! I'm using enum types in my app and I'd like to use
combine them with struts tags.
My enum class hierarchy descends to PersistenEnum (the example on
hibern
You cannot use a tag as attribute of another tag : they must follow an
XML structure
Use a variable to store the result of your tag :
Go
or
If you don't use struts-EL, use bean:define to define a script v
Go
Nico.
Pham Anh Tuan a écrit :
Hi all,
I got a problem when I code like below:
">Go
Simply define 2 datasources as resources for your webapp and get them
using a JNDI lookup.
You will not have a share transactionnal context until you use JTA and
2-pass commit, but for readonly access, you don't need it.
Nico.
Ryan julius a écrit :
Hi,
I would like, from a struts action, to q
1.2.4 is the current "stable" version
I'm using Sturts 1.2.6 for production, as known bugs does not affect my app.
Take a look at bug list to check if you can use it for your apps.
1.3.x is in development and not ready for production. Use it only for
early test as a preview.
Martin Kindler a écri
You may take a look at stXX http://stxx.sourceforge.net/ , that is a
commonly used XSLT extension to Struts.
I've used it for a prototype, but we have finally built our app on
standard JSP, as it was easier to learn for developers.
According to prototype, XSLT (Stxx) was aprox. 2 time slower than
This may work :
But you have to know the scope where is stored the ActionMessages bean.
Struts-logic-el has some value-added over JSTL, as it can be used for
struts-related logic (like errors/messages), so why not using them ?
Logic tags having an equivalent JSTL tag are not declared in struts-e
I'm using it for the same reason. I expected this enhancement, also with
EL tag support for errorStyle attributes.
It works fine for me.
Nico.
Aladin Alaily a écrit :
Hi Everyone,
I was just curious if anyone has been using struts v. 1.2.7?
If so, what do you think of the new features? Personall
uld like to have with tiles.
> I´ve been searching the old messages and found that once Nicolas de loof
> developed such a patch but it does not come with *any* documentation.
>
> Hey, Nicolas, are you there?
>
>
> Julio Cesar
>
> -Mensagem original-
> De:
Heloo,
I'm getting strange troubles on my webapp and I've set a minimalist webapp to
test it :
1 action "/logon" & 1 for "LogonForm" with 2 fields "username" & "password".
Struts 1.2.6 without any plugin
- If I use DynaForm for my formbean, my (trivial) jsp runs fine and displays
the HTML for
Solved !
I used a struts-1.2.6 jar i compiled myself. Replacing it with binary dist
makes my app work.
Don't know where I failed building struts jar...
Nico.
>
> Heloo,
>
> I'm getting strange troubles on my webapp and I've set a minimalist webapp to
> test it :
>
> 1 action "/logon" & 1 fo
Hello,
My customer would like to be able to change i18n messages easily (without
requirement to redeploy webapp or edit files
in context/WEB-INF/classes/...)
We suggested to put messages in database, and use a custom Struts
messageResource impl to retrieve them, according to
http://wiki.apache
; > Sent: Wednesday, December 15, 2004 12:09 PM
> > To: Struts Users Mailing List
> > Subject: Re: Struts, JSTL and ResourceBundle
> >
> >
> > On Wednesday 15 December 2004 14:07, Jim Barrows wrote:
> > > > From: Nicolas De Loof [mailto:[EMAIL PROTECTED
You should have a look at securityFilter that does such a job. It tries
to "look like" j2ee FORM security check, but allow you to use your own
authentication rules.
Nico.
Jim Barrows a écrit :
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January
When using cancel button, validation is automatically skipped. Use
isCanceled(request) in your action to see if cancel was clicked and
forward to your index page.
Nico.
Manisha Sathe a écrit :
I am using struts cancel button. But when i click on that it goes to next page (w/o
even validation -
You can check for cancel in actions using
isCanceled(request)
Struts cancel tag uses a magic value that this method will detect
(formbean validation is also skipped)
About exception, I used to set a global exception handler that logs
exception stack and forwards to a generic error page.
Nico.
M
exception - do u mean to say my own method common to all ? This also if u can explain with code example would be of great help.
I set a global ExceptionHandler in struts config to catch all
exceptions. It logs them for debug and forwards to an error page.
Thanks once again,
regards
Manisha
Nicolas De
Another option is to use a submit button (that will post the form) and
CSS to make it look as a link :
.submit {
border:0px;
background-color:#fff;
cursor: pointer;
text-decoration:underline;
}
Nico
Jeff Beal a écrit :
You need to have the lin
Hi,
Can someone explain me what's wrong in HTTP / servlet API about char
encoding :
I'm using to build a link with parameters, whose values use
french chars ('é', 'à' ...)
I need to set useLocaleEncoding to get values in my servlet (that is not
a struts action) using getParameterMap.
If I do n
Hi all,
I'm having troubles using the request.getRequestURL() in JSP tags
In tomcat (4.1) it returns the URL I've got in my browser, and
getRequestURI returns the Layout JSP URI. It sounds correct according to
ServletAPI javadoc for getRequestURL "Reconstructs the URL the client
used to make the
cope.
Thanks for help.
Martin Gainty a écrit :
Nicolas
Did you check out the getRequestURL() documentation from IBM
http://www.developer.ibm.com/tech/faq/individual?oid=2:25030
HTH,
Martin Gainty
__
(mobile) 617-852-7822
From: Nicolas De Loof <[EMAIL PR
You can use jakarta unstandard taglib.
(http://jakarta.apache.org/taglibs/sandbox/doc/unstandard-doc/intro.html)
I use it to access const from JSP. :
<%@ taglib prefix="u"
uri="http://jakarta.apache.org/taglibs/unstandard-1.0"; %>
Base
Nico.
Keith Sader a écrit :
IMO this i
If you're looking for a way to indent options in a select box, you
should use the HTML tag.
Nico.
Robert Alexandersson a écrit :
Hello, i want to output the String " Level 2" in my optionlists,
but the label attribute of options does not return this but the
transforemed mending it pr
Perhaps somethig like this may work :
Some text
Nico.
Vinit Sharma a écrit :
Hi,
My requirement is to use a message resource key for html:link href attribute
instead of passing a hardcoded value.
Below:
Some text
I want to replace, ${item.link} with a key from resource file, btw my ${
Using struts-EL tags :
Nico.
Kjersti Berg a écrit :
On 12/04/06, Neil Meyer <[EMAIL PROTECTED]> wrote:
Hi,
Would like to know why the following doesn't work can anybody explain it
please.
I have a text box on a page this text box is readonly when the readonly
property is set to tru
I'm using a single "taglibs" JSP that has all taglibs includes headers.
I don't use "-el" suffix for EL taglibs as I only use EL tags (not
standard ones).
<%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt"; prefix="fmt" %>
<%@ taglib ur
ll my libraries are declared.
Is there a place where I can find a list of the differences between the
standard and the EL taglibs?
Neil
-Original Message-
From: Nicolas De Loof [mailto:[EMAIL PROTECTED]
Sent: 12 April 2006 03:04 PM
To: Struts Users Mailing List
Subject: Re: Properties
I'm using validwhen rule and find great for complex validation
I'm just frustrated on the requirement to use braces to group conditions
by pairs :
I must make a 4 element "or" validation, each element beeing itself a
"and" expression.
I'd like to write test = (A and B) or (C and D) or (E and
Hello,
My application uses image buttons, based on tag. I'd like
to add a "cancel" button, that may skip javascript validation.
I didn't find any attribute to set this on . Do I have to
set myself the javascript "bCancel = true" ?
Thanks,
Nico.
This message contains information that may
creates BOTH
- a script variable (a Java variable you can use in <% ... %> java blocs)
- a bean in specified scope (defaults to page)
So you have a "myBeanValue" variable set to 1 and a "myBeanValue" String
put into page scope.
<% myBeanValue = "2"; %> changes value of script variable. my
Hello,
I'm building a wizard style webapp with 3 pages. I'm using the page
attribute to make validator check inputs.
I've got this problem :
first page validate an userId selection (required)
When this rules failes on page 2 or 3 (let's consider the user has used
a bookmark), I'd like struts
I'll have a look, thansk for the link.
Thanks also to bsimonin for code suggestion.
Michael Jouravlev a écrit :
On 11/3/05, Nicolas De Loof <[EMAIL PROTECTED]> wrote:
Hello,
I'm building a wizard style webapp with 3 pages. I'm using the page
attribute to make v
I'm using DWR on my webapp for navigation in a table, using a "Page 1 2
3 ..." footer.
DWR makes it realy simple based on a List put into user session. Browser
can get requested elements from list and DWR comes with utils to upgrade
the table contain.
Faisal Mahmoud a écrit :
Check out htt
1 - 100 of 135 matches
Mail list logo