Tagged Questions
0
votes
1answer
30 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" ...
0
votes
0answers
90 views
Tapestry5 JQuery Ajaxupload doesn't delete temp file in Chrome
Iam using Tapestry5 Jquery Ajaxupload for file uploads. If the file is large, it writes to temp file and it deletes temp file after upload. It deletes temp file if i upload through IE. But it doesn't ...
1
vote
0answers
3k views
XML Parsing Error: no element found Location: moz-nullprincipal (not strong with ajax)
I know this question has been asked many times and from what i have researched on this error it appears that it happens because cross domain ajax is only allowed for JSONP, not XML. But i am having ...
0
votes
0answers
205 views
Error calling tapestry zone updateFromURL when invoked in a keydown event for escape key in firefox
I have a custom tapestry component that includes a zone with a form and a single textfield element. I am able to send ajax requests to update the zone for various events such as the textfield's ...
0
votes
1answer
259 views
tapestry zone update with post field in request
is there way to update tapestry zone by ZoneManager with POST field in request to server?
this works fine...
var zoneManager = Tapestry.findZoneManager($('textarea'));
var listenerURIWithValue = ...
0
votes
1answer
233 views
Updating a tapestry zone with dynamic context
I'm trying to figure out how to update a tapestry zone using a dynamic, client-side-driven "context". I'm fairly new to tapestry, and I'm stuck with 5.0 for now.
The main reason to do this is to ...
0
votes
1answer
167 views
[t5.2.6]Generating zones within a loop, then updating some of them
I've been trying to do this for some time now but nothing worked. I searched through this list and I still can't figure it out !!
Here is my case, I draw a table using dimensions provided in the page ...
1
vote
1answer
1k views
How to update a zone inside a component when action is triggered from the container
I have a page : Test.tml which contain a select and a component :
<t:zone t:id="zone1" t:clientId="zone1">
<form t:id="form" id="form" method="post">
<p>
...
0
votes
1answer
1k views
Tapestry 5.2: Update Zone with data from Form
I'm playing with tapestry 5.2.4 and AJAX.
In my Test.tml I have a form:
<form t:id="form">
<t:label for="userName"/>:
<input t:type="TextField" t:id="userName" size="30"/>
...
2
votes
3answers
1k views
Session Timeout AJAX Error in Tapestry Application
I'm building a webapp using Tapestry in combination with Spring Security and the jQuery-library besides Prototype. When a user clicks on a link after his session timed out, he is automatically ...
2
votes
1answer
859 views
Modifying FormInjector context information in Tapestry 5 dynamically
My current problem regards updating context information dynamically in FormInjector, my previous question Updating a zone inside a form in Tapestry 5 probably contains useful background information.
...
2
votes
1answer
2k views
Updating a zone inside a form in Tapestry 5
I've got a Zone inside a Form, the Zone is updated with a block containing input fields which I would like to bind to the parent Form. Unfortunately this doesn't seem to work quite as easily as I ...
0
votes
1answer
176 views
Tapestry5.1+seleniumRc Ajax waitForAjax Request
Does anyone know how to do waitForAjaxRequest using seleniumRc(like waitForPageToLoad) on tapestry zone? I know there are alternatives like wait for certain element to appear and etc.
I am seeking ...
5
votes
2answers
2k views
Refreshing a Tapestry zone on a regular basis
What is the best way to refresh a Tapestry zone on a regular basis to pull changes of a dataset from a server?