We're starting a large web project, mostly green field. I like the Tapestry framework for java/web solutions. I have concerns about starting a Tapestry 5 project since T5 is still in ... |
If I use a span tag to render a component like <span jwcid="@If" .../>, my HTML ends up with a bunch of useless span tags. Most of the time, that's ok, ... |
I have a Tapestry PropertyModel for gender. Right now the dropdown just shows Male and Female because those are the only values in my model. I'd like to add a ... |
I'm try to upgrade my project using tapestry4 to tapestry5. And I'm looking for a component to use JSCookMenu in tapestry5.
|
How can I convert this code
<span jwcid="permissionInEachStep@InvokeListener"
listener="listener:onEditPermissionInEachStep"/>
into tapestry5 or have a different way to invoke method?
|
Which Java web framework best supports the "web UI designer" role? That is, which framework lets you:
- Use popular web design tools (XHTML validators, CSS editors, &c.) on your views/pages
- View changes without ...
|
I am using Tapestry 5, Smack api 3.1.0.
I have established a connection and am able to communicate with a user through the xmpp server but the replies i get are sent ... |
|
I want to develop a web application, like an online scheduler. (Yes I know it's been done a million times.)
Most of my experience is in Java, so I want to leverage ... |
How does the Block component handle CSS classes? I have code like this:
<style type="text/css">
.nameColumnHeader { width: 30%; }
.nameColumnValue { width: 30%; vertical-align:top; }
</style>
...
<table>
<tr>
...
|
I don't have much Tapestry experience so I don't really know where to start.
I need to extend the Insert component with a new component, say NewInsert, that applies a given CSS ... |
Is it possible to use a @Script component to render a script tag pointing to a js file hosted on a different server?
Basically, I need to inject a script tag such ... |
Also, if there are, which would you recommend?
|
I had a project that requires the use of Extjs as the frontend of my program and tapestry on the backend.
I am new with both, but still able to create the ... |
public void pageValidate(PageEvent event) {
//how to use pageEvent to sendRedirect to google.com ?
|
I'd like to insert a link (as an -Tag) and/or an Asset (as an -Tag) into localized Messages in Tapestry 5. Is there any way to generate the HTML so that ... |
I need to implement a multiple select in tapestry 4.1.
The example supplied in the component docs is pretty lame as it requires multiple components/properties to do one simple thing. ... |
public IBasicTableModel getModel() {
return new IBasicTableModel() {
public int getRowCount() {
...
|
is it possible to generate valid XHTML in tapestry 4.1.x ?
i specifically need the shell to generate the proper XHTML headers and can work around the actual body content - ie ... |
Is it possible to have more than one tapestry5 module in one web application? Every Tapestry module has an AppModule.java file, which if i'm correct, is supposed to handle only one ... |
pagevalidate() method will be called each time the page is refresh and i did some action on the page. I looking for a method that will only be call first time ... |
acording to the docs on service lifecycle i should be able to implement RegistryShutdownListener and tidy up my resources (in this case, shutdown a threadpool) however it is throwing ... |
I'm using Tapestry to create pages for a web app, and have been using the palette component to add/delete items to/from a group.
The page looks great in Firefox (Tapestry seems biased ... |
what is the best way to get a reference to the current session's visit object from an implementation of IEngineService?
on my pages/components i access it via @InjectState("visit") public abstract Visit getVisit().
Can ... |
I am trying to attempt to display a hashmap using a grid component. If I use
List list = CollectionFactory.newList(MyHashMap);
it returns a list however on my template page I see <theader>Empty</tHeader> and ... |
I'm currently researching into Tapestry for my company and trying to decide if I think we can port our pre-existing proprietary web applications to something better. Currently we are running Tomcat ... |
I am creating a mixin which renders a javascript file when a textfield gains focus.
I am new to the idea of mixins in Tapestry, and I am unsure of where to ... |
I am developing a website as part of my final year project and I want to display a message which confirms that an email has been sent.
I know how to display ... |
What is the best way to code a search for my website developed in tapestry?
I have the following code in my layout.tml:
<div id="search" >
<form method="get" action="#">
<div>
...
|
We are creating a Tapestry 5 webapp with an external designer creating and maintaining the css-files of the application.
We would like him to be able to make changes to the ... |
How do I implement a java socket in tapestry5?
What I want to do is create a socket which I can send an XmlHttpRequest over, through a piece of javascript code.
function sendPost(url, ...
|
I am getting a strange error when trying to display an applet on a page in my tapestry application. The error says that there is an incompatible magic value.
Is there a ... |
I have just completed a project as part of a college degree.
However I would like to deploy the project and make it live.
I am unsure of how to do this as ... |
I have a tapestry url that looks like
http://localhost:8888/forwardtask/88
how do i get the 88 bit? thanks. Tapestry is such a pain to use
|
I have a class that I am using for each row in a grid, it is the mix of multiple entities data. the question is where to put it? I tried ... |
i have this exception in a Tapestry 3 page.
Component
????????????$Enhance_49@d4159f[??????Page]
does not contain a component
xComponent.
The component exists, nobody here knows what kind of problem ... |
I have the following situation:
I have Page which activated in some context (for example "/page/ctx1")
I have component DayJournalItem which inserted in page via t:loop
<div t:type="Loop" t:source="journalDays" t:value="journalDay"
...
|
I have to implement the service provider of the OAuth protocol in a project that uses Tapestry5. Therefor I just need to return a very simple HTTP response body that is ... |
I'm starting with an existing webapp built with Tapestry.
I can't figure out where to put the Javascript I need.
Basically this application has a single page capturing data into a ... |
How can I re-use chunks of TML markup between pages? I want to refactor repetitive code out into a component, similar to a tag file or a jsp include.
|
I discovered Tapestry 5, quite recently, its clear separation between view and controller, the use of name standardization instead of XML made me go for it straight. Quite frankly I don't ... |
I usually try to minimize testing with Selenium and maximize the usage of plain old back-end testing (JUnit, mocking). With Tapestry I am finding it hard to test pages and components ... |
Let's consider following problem.
There is a page that contains baskets. A basket is a component that contains a list of items such as fruits or cars or whatever.
In the page there ... |
I'm trying to generate a form with a variable - on the server side - number of text fields. The tapestry page looks similar to:
<form t:id="form">
<t:loop source="typesOfIncome" ...
|
I'm learning tapestry 5 web framework but I don't understand the principle 1 about it:
"Static Structure, Dynamic Behaviour", what does means it ?
If I don't add components to the components, how ... |
I want to create a new project and I'm studing diferent web frameworks
In StackOverFlow there are diferent threads of tapestry but it talks about Tapestry 4 or old Tapestry 5.0.8
What about ... |
I just want a Tapestry page to redirect to a static page like this :
http://www.myWebSite.com/home/myPage.tml
-> http://www.myWebSite.com/static/myStaticPage.html
I try to do this by returning a new URL, but i ... |
I am working on a web application project using Tapestry 5 framework/javascript. This application takes few inputs and returns pdf files.
I got a new requirement of disabling the form submit ... |
anyone can decrypt below error and explain what cause this error?
http://paste.ideaslabs.com/show/jrscSzhcW
|
Can we declare/create inner class in Tapestry page and access it to the corresponding .tml page? if yes then how or if not then why.
need your valuable input guys.
Thanks in Advance.
Regards,
Mahendra ... |
I have a web project built with Tapestry 5.2.1. I have a simple logging aspect that I was using for tracing on this application. Everything was working fine until I started ... |
I have a question about Tapestry Component Programming. Can we have an another Component folder instead of the original one ?
If your reply is yes, How can you declare it (in ... |
I am facing an strange issue and not able to find out the root cause. Here is the problem statement.
I have one tapestry page with logout button. when i click on ... |
I am trying to migrate application from version 5.1.0.5 to to 5.2.4. I am facing the following issue while migrating.
@MixinAfter
public class Append
{
.......
.........
@InjectContainer
private Form form;
.............
@AfterRender
...
|
I have been using Tapestry's built-in components, but now I'd like to try making my own. Assuming this is possible, how is it done and is it generally expected that ... |
How can I get all JS files name of my application ?
I tested :
@Inject
private ClientInfrastructure javascriptStack;
void onActivate(){
mesJavaScripts=javascriptStack.getJavascriptStack();
for(Asset javascript : mesJavaScripts){
...
|
I am unable to get the tapestry 4 radio group working.
My HTML
<td><span jwcid="activeServerRadioGroup"></span></td>
<td><input type="radio" jwcid="activeServerRadio" /></td>
My .page
<property name="activeServer"/>
<component id="activeServerRadioGroup" type="RadioGroup">
<binding name="selected" ...
|
I have a form and inside it I have a country/city/etc selection.
The form is inside a zone.
When calling the onSelected for make the change of the country/city, when returning I loose ... |
I know there are many questions here comparing one framework with another. I feel i have to add one more.
What is the advantage of play framework over Tapestry5 framework? Which one ... |
I am doing some tests with the tapestry-testify librairy. But I have a question about its documentation : http://tapestry.formos.com/nightly/tapestry-testify/testing-components.html
I would like to pass different value to a parameter of ... |
I am having a bit trouble figuring out how to work with BeanEditForm component.
You see, everything is fine with it (it displays what it should) as long as i don't ... |
how to do?
<t:output format="literal:dd.MM.yyyy" value="myItem.activity.do_create_date"/>
I want to know how to format output of date?
|
I have tapestry 3 template in HelloWorld.html and HelloWorld.properties file with strings in the same folder, but cannot get them.
I've tried :
The only output that i have is [PAGETITLE].
Here is the ... |
I have a simple link inside my tml (apache tapestry specific) :
<a href="www.google.com" class="info-value" target="new">www.google.com</a>
Now on the browser if I am trying to click the link, actually it's redirecting to
http://localhost:8080/..../..../www.google.com
Instead ... |
I am new to Tapestry 5, and I stuck with one of the following scenario :
Controller.java
@Property
private List<EnumeratedDynamicProperty> enumeratedDynamicPropertyList;
@Property
private EnumeratedDynamicProperty enumeratedDynamicPropertyInfo;
.tml
<tr t:type="Loop" t:source="enumeratedDynamicPropertyList" t:value="enumeratedDynamicPropertyInfo" encoder="encoder">>
<td>${enumeratedDynamicPropertyInfo.propertyName}</td>
<td>${enumeratedDynamicPropertyInfo.description}</td>
<td>${enumeratedDynamicPropertyInfo.type}</td>
</tr>
Now inside EnumertedDynamicProperty, I have one field with ... |
I need help to display chart in tapestry pages. I'm using tapestry 5.2.4 and chenillkit 1.3.0.
My problem is that the option HtmlText : false seems not working. It's the only option ... |
Is it possible to pass a parameter to the method which is being defined in controller, and called by tml ?
tml
${getDynamicFieldValue("Subject")}
java
public String getDynamicFieldValue(String fieldToCompare)
{
//Logic
}
Exception
Could not convert ...
|
I need help to display chart in tapestry pages. I'm using tapestry 5.2.4 and chenillekit 1.3.0.
My problem is that I want to defined a custom javascript function to display date ... |
I'm working through this Tapestry 5 tutorial and I'm stuck on the "Running the Application inside Eclipse" step.
When I go to the Eclipse run configurations, select Jetty Webapp, then ... |
I've been asked to 'sniff' users' windows username via a vbscript snippet and am having trouble getting this to work in the tapestry (5.1.0.5) application.
It seems tapestry is trying to interpret ... |
A friend from college is studing web programming using the tapestry framework, and he asked me if could i help him with his homework.
One of the questions in the homework ... |
I want to display in a t:grid component a List of items, but i don't know why i get a NP
I am sure 100% that the List i am retuning is ... |
hi i've some problem with error:
I try to passed value integer from one page through pagelink anotger page using context .. code looks something like:
public class Contact
{
...
|
I'm trying to add an action to my tapestry select menu. I'm currently generating the select menu by injecting selectModelFactory and providing it with a list from a hibernate query. I ... |
I am currently evaluating IntelliJ for a tapestry project. I setup my module to use the tapestry facet but the following three tapestry items remain greyed out: page, component, ... |
I am to decide whether to use Apache Click or Apache Tapestry 5 framework. Which one I should choose? I'm looking for a framwork that I could use for building Java ... |
When minimising yui with 2.4.6, I get this problem:
java.lang.StringIndexOutOfBoundsException: String index out of range: 232
at java.lang.String.substring(String.java:1934)
at com.yahoo.platform.yui.compressor.JavaScriptCompressor.printSourceString(JavaScriptCompressor.java:267)
at com.yahoo.platform.yui.compressor.JavaScriptCompressor.parse(JavaScriptCompressor.java:330)
at com.yahoo.platform.yui.compressor.JavaScriptCompressor.<init>(JavaScriptCompressor.java:533)
It works when started through my IDE but when deployed to jboss it ... |
I have a page in my Java + Tapestry 5 application, which contains two components - a Form and a Grid. The form field is use to filter the results displayed ... |
I use the following code for a select-component:
Java-class:
@Component(parameters = {"blankOption=AUTO", "model=someModel", "value=someId",
...
|
I have a Tapestry application, that retrieves data from a form, writes it to a database and then displays the result. It all works well as long as no special characters ... |
I want to extend the tapestry Grid component to be able to get the following behavior:
I want a specific column to have the text aligned to the right, which is no ... |
How can I get rid of the box look of radio buttons in IE8? They look like this:
They look normal in other browsers. I'm using Tapestry ... |
i try to make regexp for passwordfield on beaneditform,but passwordfield don't recognizes regexep???any suggestion please???? :)
addUser.tml
<t:beaneditform t:id="newUser" exclude="id" reorder="userName,password,fullName,Gender,email,role">
..........................
<t:parameter t:name="password">
...
|
How do I change the position of the sort button in header of the grid in Tapestry 5?
I have column names of different lengths and I break lines on spaces, ... |
I am using Tapestry5JSPEditorForEclipse to generate the TLD files by tapestry-tldgen Maven plugin. i have added entry in the project pom.xml. below is the entry for the reference.
<plugin>
...
|
I am aware that there is something special about tapestry services/resources such as Request, Messages etc which are only available in the context of a component render.
I need to create a ... |
My problem is simple. I want to use button as an event link.
There exists AJAX-based event link inside a form in tml. The event link has functionality that updates some ... |
I am learning Apache Tapestry, but can't get Netbeans' autocomplete to work.
I am using namespace
xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd"
But Netbean show error on mouse over "No library found for this namespace".
And the auto complete ... |
I'm facing a problem when using tapestry 5.2.0 : using multiple times a component containing a zone.
At this point, the component is used 3 times on the same page but only ... |
I'm trying to write a composite component like this
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<t:container xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd" xmlns:p="tapestry:parameter">
<t:select t:id="yearField" t:value="year" ...
|
Does IntelliJ IDEA support Tapestry 4? I've got a Tapestry 4.1.x code base to work with, and as far as I can tell the Tapestry facet (at least in 10.5) only ... |
In a form post the user uploads a file, I read the file, process it and send back a CSV (StreamResponse). I am facing a problem streaming back the results. ... |
I want ask about appfuse.
I want create an appfuse project with tapestry 4. but when i look at appfuse website, it only support tapestry 5 and not tapestry 4 anymore.
How ... |
I am working on a Tapestry 5 based web application that should expose an API to iPhone and Android devices. Currently the API is implemented using the built in MVC capabilities ... |
Is it possible to extend ExternalLink in Tapestry 4? When I try, it seems as though none of my parameters are getting populated. I've tried explicitly re-annotating the abstracts in my ... |
In our application, we invoke YUICompressor to minify our javascript. Under some conditions we are having trouble identifying, it incorrectly unescapes backslash-escaped characters, so for example
var newline="\n"
becomes
var newline="
"
has anyone seen ... |
I've been working with Tapestry5 in Eclipse 3.7 for a week or so, and can't get syntax checking to work correctly on OSX. I am using Eclipse Java EE IDE for ... |
I have a text in a form that I want to hide if the form has errors and replace it with the error message.
How do i determine in the tml that ... |
How to add a tooltip(or a title tag) to tapestry grid rows? I want to show row sensitive information in the tool tip. I could do it in t:loop but I ... |
I have been looking for a good Java web framework and found Tapestry, which looks quite nice from an application architecture point of view. Another possibility is ASP and .NET, though ... |
I have an HTML button that needs to check several conditions, and if they pass allow the default action to occur.
The following works in Firefox, but it fails in IE. ... |