Apache Tapestry is a web application framework which implements the MVC pattern. It is in many ways similar to Apache Wicket. Tapestry is a component-based framework, attempting to structure web applications into small, manageable and re-useable parts. Components consist of a component class file ...

learn more… | top users | synonyms

1
vote
1answer
190 views

Tapestry5 - using HTML tags in Message Catalogs

In the Message Catalog files, is it possible to using HTML tags? It seems to display the text literally on the page. If it's not possible, is there a better way to include embedded links in the ...
0
votes
1answer
105 views

type coercion error handling in tapestry 5

sometimes user enters text that cannot be coerced properly. e.g. string -> money. '123 USD' can be coerced properly but '123 ZZZ' or 'dwerss' can't. one of the examples can be checked by regexp on ...
4
votes
2answers
373 views

Integrating Grails with existing web application

We have a large, unwieldy but fairly stable web application written with Tapestry 4.1, which we're looking to gradually move off of. To that end we're looking at developing some new functionality in ...
2
votes
1answer
117 views

Hibernate xml file issue

I have set up Tapestry 5 project and all went fine, until I deployed Hibernate. I have created hibernate.xml file and <hibernate-configuration> <session-factory> <property ...
0
votes
2answers
2k views

Shiro Authorization populate authorization with remote roles

I'm using Tapestry-Security which uses Apache Shiro I have a custom realm which handles authorization and authentication. Our authentication technically happens using a remote service, which returns ...
1
vote
1answer
223 views

Zone and Jquery issue in Tapestry5.2.6

I am migrating my web application from tapestry version 5.1.0 to 5.2.6. I am using jquery dialog to handle popped out display (instead of a pop-up window). While using tapestry v5.1.0, I used ...
0
votes
2answers
136 views

application url containing '@' throwing an exception

I have my application url which I am sending the the end user on their emails. Now that url contains the 'username' field, which can contains '@' character. For e.g. link which sent to the end user ...
0
votes
1answer
72 views

Live Traffic Feed in Tapestry

I want to make such a thing using Tapestry 5.2. however I don't know from where to start. Anyone has any idea to point me in right direction. Thanks in advance.
0
votes
1answer
205 views

Tapestry5 scrollable pagination

I have a component with in a page that shows paginated search results (). Instead I am looking for a scrollable pagination (eliminating the need to click next>). I have googled for several hours, I am ...
0
votes
1answer
170 views

Tapestry - Composite components?

can somebody tell me how to create composite components in Tapestry? I know how to do this in JSF with using as well as ui:define. But how with tapestry? I'd like to create following setup: ...
0
votes
1answer
140 views

Tapestry Bean properties not set when using ValueEncoders

I am new to tapestry just creating my first application. I have a form where I am creating an "Object" consisting of 2 other objects, Customer and Country. <t:beaneditform t:id="createMyObject" ...
0
votes
1answer
245 views

Jetty Tapestry Hot Deployment = server restart?

could someone confirm that the tapestry hot deployment with Jetty is a: "scan the project for changes and restart the server?" Or is it: monitor changes and replace new files on server, but do not ...
1
vote
1answer
407 views

Tapestry5 and selection on tree component

In Tapestry5 tree component allows a user to select multiple items. Each selected item looks colored in bold. How do I make a restriction on tree component so is possible to select one single item? ...
1
vote
0answers
63 views

Tapestry 5.3: PlasticClass.getMethods doesn't include introduced methods

Recently we updated all our ComponentClassTransformWorkers to ComponentClassTransformWorker2s and came across a bug. So, to create a method a new ComponentClassTransformWorker2 called, say, ...
0
votes
1answer
374 views

Tapestry5 : Non select the radio button

I am having two radio buttons on my first.tml pag, when the page renders the first button comes out to be selected bydefault. I don't it this way , my requirement is radio button to be selected by ...
0
votes
1answer
464 views

Tapestry 5: how to get the referring page class?

Is there a way to get the Tapestry page class or name of the previous page that generated the request to the current page? I have a @Persist property in a Tapestry page that has to be reset unless ...
0
votes
1answer
173 views

Upgrading Tapestry application from 5.0.18 to 5.3.2

I'm upgrading my app from 5.0.18 to 5.3.2 and i get following error. Have made couple of changes and not sure which one causing this error. Nothing from logs. This error pops up on the UI. Following ...
0
votes
1answer
233 views

How can I get clientId of parent encloser in Tapestry 5 component?

I am developing an ExtJS component model under Taperstry 5. I try to implementy the following API (.tml code): <t:extjs.viewport t:id="ddd" layout="border" width="500"> <t:extjs.panel ...
0
votes
2answers
332 views

Context parameter not working in Tapestry 5.3.2 for Submit

I have a loop displaying records, and I want to add submit buttons to all the rows. The reason they need to be submit is because there is a form at the bottom I would like to have persisted when the ...
0
votes
2answers
435 views

Calling fnStandingRedraw to retain the current pagination settings in Datatables using javaScriptSupport.addInitializerCall

I am using the CreateEventLink method of the ComponentResources class to create a link to a delete event on my page called UserList using the following: resources.createEventLink("delete", ...
0
votes
1answer
240 views

How to build tapestry Tab component?

Anybody know a working example of Tab component in Tapestry? I found following examples on the net but either the source is not attached or the project is not working with latest Tatestry 5.3 release ...
-1
votes
2answers
219 views

T 5.3.2 Dynamic Buttons in ajaxform

after updating to Tapestry 5.3.2, my @ActivationRequestParameter does not work anymore .. having a form like this <t:zone t:id="formZone" id="formZone" t:update="show"> <form ...
0
votes
1answer
160 views

Upgrading to Tapestry5.1 Javascript Error

Iam upgrading my app from Tapestry 5.0.18 to 5.1.0.5 and i get following javascript error. I know there was a fix for WaitForPage() for partial ajax responses in 5.1.0.5. But i still keep gettin the ...
0
votes
3answers
272 views

Tapestry5 Button Appearance

In tapestry5 is possible to change a submit button text? In jquery is possible as is indicated here. But using java methods, how is possible?
0
votes
1answer
176 views

Install spindle in eclipse

I want to learn tapestry framework. So i began with http://www.sitepoint.com/jakarta-tapestry/ I am using eclipse indigo version 1. I am having problem in installation of spindle plugin. Can anyone ...
1
vote
1answer
2k views

how to create a composite primary key hibernate JPA?

i try to create composite primary key in table from 2 foreign key using hibernate JPA,but gives me error.I find some solution on net but nothing The relations between tables looks like this: ...
1
vote
2answers
160 views

Using “Persist” annotation in Tapestry is causing Problems with RunJettyRun

I am going through the Tapestry beginner tutorial at: http://tapestry.apache.org/tapestry-tutorial.html I just downloaded the template project and tried running it as is. The problem is adding the ...
0
votes
1answer
113 views

How can I use a translator and/or validator to make a String field required in Tapestry 4?

I'm using Tapestry 4. I have several TextFields whose values get passed into Strings in the page class, and they work great as long as there is some content in the fields. Most of them are optional, ...
0
votes
3answers
274 views

tapestry. exists a dateTimeField?

I'm newb in tapestry but I'm afraid there is no datetimeField object. If I use t:datefield component, I'll have a calendar to pick a date, but I would like to pick as well the time I'm using ...
0
votes
2answers
1k views

How to load files/properties from WEB-INF directory?

It seems that in my Tapestry app, I can't load ini files nor properties file from WEB-INF directory or class path. I tried several different methods which should load my file but non of them worked. ...
0
votes
1answer
433 views

Tapestry + JDO + GAE

I tried to run Tapestry on GAE. After some time, I was able to resolve the last errors to display at least a simple page. But, to be honest, some sort of data-storage would be nice. I tried to use ...
0
votes
2answers
747 views

Tapestry 5, jQuery UI Dialog and close action

Using tapestry5-jquery and Dialog component, ¿How do I implement a close action for the parent dialog?. I mean a button that executes some code and then close parent dialog without changing of page. ...
2
votes
1answer
173 views

why onPassivate() method called multiple times in Tapestry5

when i click on some pageLink then it goes to the dedicated page provided in the pagelink. but on the dedicated page onPassivate() method called multiple times. anybody knows why? Regards, ...
2
votes
2answers
313 views

Wich component based Java-Framework can also do Webservices?

For a new project I want to usa a component-based framework (thinking of Wicket or Tapestry). It's an intranet-application, but i have to provide Restful Webservices aswell. After googling around i ...
0
votes
2answers
259 views

Tapestry5 Value Encoder with Hibernate Composite Key

I'm trying to get my tapestry value encoder to work with a hibernate composite key. I have the following code and I'm trying to get the composite id and pass it to the interface where it could later ...
0
votes
2answers
211 views

Flexibility and customization in Tapestry Framework

I was doing some research about different Java Web MVC frameworks for my new website and stumbled upon Tapestry 5.3.2. I was wondering about the flexibility and customization framework provides. Lets ...
2
votes
1answer
1k views

Tapestry5 : handling multiple submit buttons with form validation event

In Tapestry5, I am having two submit buttons in the form and I want to perform Validation event as well, how can I achieve that ? This is what I am trying to do : In page.tml <form t:type="form" ...
0
votes
2answers
273 views

Tapestry Component Life Cycle with Example

Can anyone share the link or some good tutorial about the Tapestry components life cycle with tutorial? Regards, Mahendra
0
votes
0answers
249 views

Issue with my java webapp's unit tests

I am trying to make sure that if a user has not accepted the terms and conditions, then they cannot register - or to put it differently, they have to check a checkbox. However my ...
1
vote
1answer
184 views

How to keep in sync the resources of two folders with Maven

I use Eclipse + Maven and - for unit testing purposes - the web framework I am working with (Tapestry 5) requires that view elements (*.tml) that are in src/main/resources also be present in ...
2
votes
2answers
163 views

Pattern for unit testing a form with a Captcha component inside?

I am currently faced with the difficult task of unit testing a form with a Captcha component inside. By definition, a Captcha is intended to prevent automatic submissions. And by definition, unit ...
9
votes
1answer
378 views

Tapestry : Start page use english locale instead of default locale

We built a website with Tapestry 5.1.0.5 and we encounter, sometimes, a missing key problem when we hit the start-page. This problem appeared only 4 times, this is a random issue. Actual ...
1
vote
3answers
720 views

Getting this Exception while deploying war file in tomcat server

I'm doing web project in tapestry by using jetty server in Eclipse. It works fine while running in eclipse. but when i deployed the war file in Tomcat server. I'm getting the below Stack Trace. ...
0
votes
1answer
206 views

How do I concat application context in a Tapestry .tml?

I am developing a web-application with Tapestry and I have a bunch of images that application displays in more than one page, so I wrote the path in WEB-INF/app.properties file. But I need to concat ...
1
vote
0answers
233 views

Custom Component support in TapestryTools Tapestry5

I have used tapestryTools in Eclipse-Indigo. it is working fine for me. I would like to discuss one points here. 1.In the custom component i can see only those components which are inside the ...
0
votes
1answer
53 views

Unable to display jpg img in grid (tml)

I have an object Resource with an attribute picture. if in my grid I do: <p:pictureCell> <img src="${context:/css/images/pic.jpg}" width="110" height="80" /> </p:pictureCell> ...
-1
votes
1answer
335 views

How to change database of tapestry 5 demo(tapestry-hotel-booking) to mysql

I change hibernate.cfg.xml as the following: <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" ...
0
votes
3answers
412 views

Upgrade : Tapestry 5.1.0.5 to Tapestry 5.2.6

I am trying to upgrade the tapestry version from 5.1.0.5 to 5.2.6. I have read the release notes of the version and applied appropriate changes to the project. Now when I am starting my application, ...
0
votes
1answer
571 views

tapestry shiro security authentication

I am using Tapestry5, and apache shiro for security. I am stuck with authenticating user from database table. In this function doGetAuthenticationInfo() don't we need to set the Subject? What is the ...
0
votes
1answer
193 views

Tapestry internationalization - removing locale prefix

Tapestry adds automatically a locale prefix to the URL when switching between locales: http://host/en/home http://host/es/home http://host/fr/home etc. How to avoid it; I found in the Tapestry APi ...

1 3 4 5 6 7 10