0
votes
2answers
45 views

best way to persist date as string

How to best persist Date property as string property of ejb3 entity? /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package entities; import ...
2
votes
1answer
29 views

Tapestry generates input tags in pair

I want to generate HTML5 valid document, but I have a problem with forms in my Tapestry app. I am using tapestry textfields like below: <t:textfield t:id="specId" value="val" /> Tapestry ...
0
votes
1answer
36 views

Tapestry5 zone doesn't update on radio button change using zoneUpdater

I've got 2 radio buttons on my Tapestry5 page and I want to update zone when value changes: <t:radio t:id="allDay" t:mixins="zoneUpdater" t:event="allDayChanged" t:clientEvent="change" ...
1
vote
1answer
53 views

Unable to convert client value 'null' back into a server-side object

This question is about Tapestry components issue. I'm looking for a solution of exactly this issue, not any workaround or alternative ways, how to implement this interface. Consider ajaxformloop ...
1
vote
1answer
32 views

How to implement django-like management commands in Tapestry5 app?

I want to executie custom (groovy/clojure/java/whatever) "scripts" as command line commands to do some tasks with Tapestry5 app (it's hibernate part, really). To perform a migration from previous ...
0
votes
1answer
51 views

Java Tapestry5 dynamic layout

I have a question about Tapestry pages and templates. A user send request to get a page. I recognize the request comes from mobile or desktop. I want to show a requested page with different layout. ...
0
votes
3answers
106 views

Tapestry services implemetation with Hibernate usage

I'm talking about T5, Java 1.7. I can not find any enough detailed tutorial about using hibernate inside Tapestry services. What I need is to create Tapestry service which could deal with hibernate ...
0
votes
1answer
54 views

When I should close the session, acquired from HibernateSessionManager in Tapestry?

When I should close the session, acquired from HibernateSessionManager in Tapestry? Some piece of code. Consider some method, which deals with HibernateSessionManager object: public void foo(final ...
1
vote
1answer
43 views

Messages folder for the class is not from 'pages' and 'components' packages

In Tapestry, .properties files with localized messages are located in page, component and application message catalogs. I have class is not from pages and components packages, in which I want to ...
0
votes
1answer
172 views

Spring3 vs Tapestry 5.3

I'm currently trying to compare Spring3 with Tapestry 5.3. I've been a Tapestry user since 2003, so I tend to have a bias opinion and only because I have no experience with Spring. I'm seeing Spring ...
2
votes
3answers
161 views

Editing a complex Java object in a Tapestry 5 web application

I am using Tapestry 5.3.6 for a web application and I want the user to edit an instance of a Java class (a "bean", or POJO) using a web form (which immediately suggests the use of beaneditform) - ...
0
votes
1answer
40 views

Valid way to get HibernateGridDataSource sorted by specified columns

The common usage of HibernateGridDataSource for showing table contents on page is just simple method: public GridDataSource getList() { return new HibernateGridDataSource(session, Foo.class); } ...
2
votes
1answer
262 views

How to submit autocomplete select value into Textfield in Tapestry5?

I've got a Textfield with autocomplete and zoneUpdater mixins. Based on the typed value, I call service which returns new values for the autocomplete select. So far, so good. Big problem for me is ...
0
votes
0answers
83 views

Function Tapestry.Initializer.uploadable() does not exist

I'm using Tapestry 5.3.6 in my web app. I want to use tapestry5-jquery (AjaxUpload), 3.0.0. Once I add the dependency to the pom.xml (without a real use of it), I'm getting error message saying A ...
0
votes
2answers
121 views

how to refer to the property of bean used in BeanEditForm (tapestry5) in Java?

I've got in my .tml file something like this: <t:beaneditform t:id="adForm" object="editableAd" reorder="actiontype,shops,movies,streams,widgets" .... My question is how ...
0
votes
0answers
48 views

How to use Radio button in Tapestry4.2?

This part I added in .html: <form jwcid="@Form" success="listener:doSubmit"> <span ...
1
vote
1answer
132 views

Tapestry - Enum coercion

I am currently trying to get an enum as a part of my Tapestry 5 form. So I followed these explanations without success. Indeed I am getting this error : [...] Caused by: java.lang.ClassCastException: ...
0
votes
1answer
82 views

How to fill up Tapestry5 palette with list coming from web service?

I am trying to fill up Palette component in Tapestry 5 with result of calling web service, which is a Segment list. Segment is a ordinary class with some attributes like title... I would like to ...
0
votes
2answers
36 views

Running some actions before bind() method

I wonder, is any convenient and appropriate way to describe in Tapestry5 in AppModule some actions, which should be invoked before bind() method will run? Of course, it is possible, to include such ...
2
votes
1answer
80 views

How to create simple and refactor-proof page links in my Tapestry 5 application?

Suppose I have a Grid with some links to edit an Entity. This is my .tml file <table t:id="personGrid"> <!-- ... --> <p:editCell> <p ...
0
votes
2answers
36 views

JSON chaning value

here goes the first JSON object to string output { "session_id" : "zzz00001111", "name" : "Administrator", } but when I call, response.remove("session_id"); ...
0
votes
3answers
110 views

Tapestry 5.3 Appending html at the end of body via Custom Component

I have seen many tutorials on adding html programmatically via MarkupWriter, but it adds the html where the component is used. Is there any way to tell the writer to add it just before the closing ...
0
votes
1answer
67 views

Tapestry: startup order using @Startup and @Order annotations

Consider some AppModule in Tapestry project. I want to order sequence of actions, which must invoke on system startup. Consider, I have two simple actions: 1) Action, which must go first: ...
1
vote
1answer
90 views

Liquibase integrated with a Tapestry and Hibernate: initial schema creation step

I have the project based on Tapestry framework. It uses Hibernate as ORM library. My classes are mapped to database using annotations. I would like to integrate Liquibase into my project to be able ...
0
votes
0answers
34 views

how to pass list into method called from tapestry 4

Is it possible to pass an enum variable (Person.java) into into a List using tapestry 4 so that it can be called from a html page public String isDisabled(List<Person> peopleToCompare) { ...
1
vote
1answer
203 views

Tapestry 5 - Dynamically generate URL of file in web app context folder in Java code

I am displaying a static image asset inside a component, and I don't know until runtime what that image should be, so I need to dynamically generate the URL. These images all live in webapp/images/ ...
0
votes
1answer
36 views

Add js file with parametar in Tapestry

I want to add google maps js lib to my tapestry application, but tapestry doesn't allow me to send parameter. "https://maps.googleapis.com/maps/api/js?key=ansdjaskdjaksdajskdaskda&sensor=true" ...
0
votes
1answer
85 views

Regex for email with tapestry

I am using tapestry 4 on my web application. I have tapestry validating my email address field. According to the tapestry documentation it uses regex to validate the email addresses ...
0
votes
1answer
80 views

Exception construction service in hibernate when mapping

I am getting this exception when i run the application with two entities mapped Exception constructing service 'ValueEncoderSource': Error invoking service contribution method ...
0
votes
1answer
142 views

Tapestry File Upload via Tomcat

I have problems with file uploading on Tapestry 5.3.6. I am using this as a reference http://tapestry.apache.org/uploading-files.html With Jetty web server, everything is fine, file gets uploaded ...
0
votes
2answers
116 views

Handling events in Tapestry layout

I have a problem in my tapestry project. Every time I load one page, it triggers onActivate method if is defined in the page in question. But I don't know how to catch that event in my layout ...
0
votes
2answers
79 views

How to find which Parent Object created a child Object

I have a manager which is called by several different classes. The manager is instantiate through a Inject. So when I'm debugging I need to know who instantiate this manager? is there any way to do ...
0
votes
2answers
153 views

Tapestry, Zone inside loop

I have another big issue. I have component, with zone, and form that refreshes the zone. When I put component inside loop, it shows only last zone. I generated unique ID for every zone. In page ...
0
votes
1answer
191 views

Problems with implementing authentication feature in a tapestry web app using tynamo-security module

I am completely new to tapestry and the tynamo-security module and need your help. I want to implement an authentication feature on my web app using tynamo-security and hibernate. I followed the ...
0
votes
1answer
161 views

Tapestry, Get selected item from loop

I'm currently working on some project, using Apache Tapestry 5.3.6. I have issue using t:loop component. Is there any way I can get selected item after loop finishes, and page is rendered? What I need ...
0
votes
1answer
77 views

how to find the port number at application startup in apache tapestry

I have an Apache tapestry application which is running under Jetty server. As such port number of the running HTTP server can be obtained during a request from the request object. But I need to find ...
0
votes
1answer
46 views

Render form in cycle

This question is about Tapestry 4 (not Tapestry 5). If I try to render form component in the cycle, and submit one form, validation displays errors in both of them because tapestry creates only one ...
0
votes
0answers
67 views

Tapestry dynamic parameter to validator constraintValue

Hi I've got a validator in tapestry, which uses some service to determine if validated field is unique among all entities in data base. But in case of EDITING I should also provide current id to the ...
0
votes
1answer
92 views

How to refer another table in Hibernate

I have two classes: User and Video: @Entity class User{ @Id int id; String name; } @Entity class Video{ @Id int id; String url; User user; } ...
0
votes
1answer
162 views

Java URLEncoding / Decoding URL Spaces with dashes [closed]

I'm looking to encode filter parameters within a URL. I'd like a readable URL so I'd like to replace spaces with underscores. Example aston martin encoded to aston_martin and not aston$0020martin. I ...
0
votes
1answer
132 views

Failure reading parameter 'selected' of component tynamo/PropertyEditBlocks:palette_set

I'm experiencing tynamo model module (org.tynamo:tapestry-model-web:0.3.1:jar) over Tapestry, and I'm facing an issue that I can't handle. I've got two entities Client and Contract. Obviously, a ...
0
votes
0answers
33 views

Raty component in tapestry

I want to implement raty component and bound it to the existing DB. I have seen raty component of the JQUERY project and seems to be OK, however no demo is presented anywhere, and I can't figure out ...
0
votes
1answer
101 views

Use Tapestry with Primefaces?

Is it possible to use Tapestry together with Primefaces? I wonder because primefaces uses xhtml tags to build the webpage. And tapestry does not use xhtml but own *tml file format. Does anyone know?
0
votes
1answer
220 views

Exception: source is null for getProperty(null, “agent”)

I am just learning how to use tapestry and I keep coming across the following error Exception: source is null for getProperty(null, "agent") ognl.OgnlRuntime.getProperty(OgnlRuntime.java:2203) ...
0
votes
0answers
105 views

Palette with GenericValueEncoder, GenericMultipleSelectModel

I am trying to make a palette with using http://chenillekit.codehaus.org/ generics with database entity objects. Template This is my page template <t:layout t:pageTitle="${message:title}" ...
1
vote
4answers
282 views

Hibernate query restrictions using URL key/value style parameters

I'm using Tapestry5 and Hibernate. I'm trying to build a criteria query that uses dynamic restrictions generated from the URL. My URL context is designed like a key/value pair. Example ...
1
vote
1answer
133 views

tapestry component for one to many maping

I have similar to scale to biological classification. I am looking for a tapestry component that can link them faster. However I am limitied to tapestry 5.2.6. @Entity public class Species implements ...
0
votes
2answers
107 views

error tapestry using data gridsource 2

Continuing tutorial I have came across an error. previous problem seems to be fixed. tutorial says: To make use of the created CelebritySource, add the following method to the ShowAll page class: ...
0
votes
1answer
281 views

tapestry using data gridsource

I am trying to learn tapestry from tapestry tutorial, however part of it is outdated. Using GridDataSource code for it is: package com.packtpub.celebrities.util; import ...
1
vote
1answer
193 views

is it possible to disable tomcat cache from a normal java file

Hi i need to disable tomcat caching for a single page. i have gone through the ref, Control server side caching by page (Tomcat)? & Java servlet how to disable ...

1 2 3 4 5