If I have three targets, one "all", one "compile" and one "jsps", how would I make "all" depend on the other two
Would it be
<target name="all" depends="compile,jsps">
or would it be
<target name="all" depends="compile","jsps">
Or maybe something even different?
I tried searching for example ant scripts to base it off of, but I c...
I have a MDB marked with @Depends making it dependent on my war, when I deploy the application to the server it works ok, but when I try to run my tests the test fails...seams because of some wrong config...any hints to solve this? I guess that the embeded jboss handels this in some diferent way?
I use: seam 2.2.1 jboss 5.1 testNG
the ...
Huy Guys,
I am trying to use jquery validate and specify that one field is required only when 3 other fields are blank.
the thing is that the rule is working but it still remain requiring the field even when I type value on it.
Thanks.
This is my code:
$("#ProspectDtlFrm").validate({
rules: {
prsptEmail: {
required: function(...