Hi All,
I want to import multiple javascript files using the @Import annotation.
This works
@Import("context:ext-3.2.1/adapter/ext/ext-base.js")
public class Layout
{
...
This does not work
@Import("context:ext-3.2.1/adapter/ext/ext-base.js")
@Import("context:ext-3.2.1/ext-all-debug.js")
public
how about this?
@Import(library =
{"context:ext-3.2.1/adapter/ext/ext-base.js","context:ext-3.2.1/ext-all-debug.js"})
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Import-tp4277615p4277644.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
--
> I need spring [...] for things like jpa support and transactions and other
> things ...
I guess you're not an EJB fan :-) You don't need spring. In fact, our
Ecom app runs on pure Tapestry+TapIOC (plus Apache commons lang) with
EJB3 in the middle tier doing all the heavy lifting you're talking
Note that the syntax of annotations is defined by the Java language,
not Tapestry, as is the limitation (?) that a given method (or other
member) have only one annotation of a given type.
On Sat, Apr 2, 2011 at 5:39 AM, Angelo C. wrote:
> how about this?
>
> @Import(library =
> {"context:ext-3.2.