Multiple Template Handling

2006-08-09 Thread Varun Mehta
In a normal case scenario, we have a base template in which we plug-in the other pages subsequently using the .. blah blah blah Now considering the case where there are different layout patterns, which have different Border.html pages for initial layout of where the content goes, how

new submitType parameter

2006-08-09 Thread Jesse Kuhnert
I've added a new "submitType" parameter to all of the form submission components. (http://tapestry.apache.org/tapestry4.1/components/Submit.html) It's not a "huge" deal, but it does at least make the form cancel/refresh/etc logic feel a lot more straightforward now. No one should have to know how

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Jesse Kuhnert
Thanks for sticking in there Dom. I've fixed/ehanced the listener method invocation logic so this should work now. (You can also have your IRequestCycle or BrowserEvent parameters appear in any order you like in the method, even mixed in randomly with your other parameters. ) Changes should be d

Re: Krysalis Menu Component

2006-08-09 Thread Andy Chu
I used krysalis menu component before but I did not use FRAME. Using Border component should be a elegant and effective way to create a common layout. On 8/10/06, Peter Dawn <[EMAIL PROTECTED]> wrote: hi guys, i have been trying to implement the krysalis menu component within my web app. now i

Re: [OT] Why jwcid?

2006-08-09 Thread Nick Westgate
In addition, id (and maybe name) are useful attributes for javascript programming, so tapestry leaves them alone when it doesn't need them. That way you can still use them in your own javascript. Cheers, Nick. Karthik N wrote: every element that does not have the jwcid attribute is treated as

Re: [Announce] Clepsydra 0.8

2006-08-09 Thread Josh Long
Better late than never, but I _just_ saw it :-( That's very cool Jean! Josh On 8/1/06, Jean-Yves Sironneau <[EMAIL PROTECTED]> wrote: I just wanted to let you know that the first release of Clepsydra a GPL licensed web application for managing and sharing a collection of documents (pictures c

more dojo support

2006-08-09 Thread Jesse Kuhnert
I'll update some of the site docs, but Tapestry now has slightly more direct support for any issues people may have related to dojo. I do want to make it very clear that these should be issues directly related to a feature supported by Tapestry ~only~. Linking tickets on http://trac.dojotoolkit.o

Re: Creating a dateTime component

2006-08-09 Thread andyhot
Αρχικό μήνυμα από Vinicius Carvalho <[EMAIL PROTECTED]>: > Hello there folks. I need to create a datetime component composed of > textfields and selects (text for hours, and selects for > days/months/years). > What's really tricking me is how can I be able to convert 5 fields > into a date object

Krysalis Menu Component

2006-08-09 Thread Peter Dawn
hi guys, i have been trying to implement the krysalis menu component within my web app. now i am also using frames. now the top frame has my menu. however when the menu does drop down, it gets chopped off at the start of the main middle frame. how can i overcome this problem? has somebody else ex

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Jesse Kuhnert
Ok thanks Dom. (and sorry...I have found the problem and have started a test case. ) You can expect a new snapshot later tonight that fixes this issue. On 8/9/06, Dom Couldwell <[EMAIL PROTECTED]> wrote: OK, I've tried this with the latest snapshot as well and get the same problem. I've raise

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Dom Couldwell
OK, I've tried this with the latest snapshot as well and get the same problem. I've raised a JIRA ticket: https://issues.apache.org/jira/browse/TAPESTRY-1051 Dom Couldwell Global Markets Research +1(212)250-7082

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Jesse Kuhnert
HmmI don't remember fixing anything specific to BrowserEvent since then, but yes...More or less the snapshot builds are slowly having fixes made to them almost every day. I would reccomend moving to them if you are already on 4.1. On 8/9/06, Dom Couldwell <[EMAIL PROTECTED]> wrote: Yep, Br

Re: XTile over SSL

2006-08-09 Thread Jesse Kuhnert
I don't remember what XTile does internally, but if it uses an iframe to load content that's probably why. IE is very quircky in this regard. Unrelated to XTile specifically, but the "fixes" for this are listed in here somewhere.. http://trac.dojotoolkit.org/ticket/548 On 8/9/06, Ralph Johnston

Re: Dynamic name for components

2006-08-09 Thread Vinicius Carvalho
Sorry for this, my mistake, tapestry is already adding a _# as suffix of each component. I Was in such a rush that did not see it :P Sorry for the inconvenience On 8/9/06, Vinicius Carvalho <[EMAIL PROTECTED]> wrote: Hello there! I have a component (datetime) which has nested components on it:

Dynamic name for components

2006-08-09 Thread Vinicius Carvalho
Hello there! I have a component (datetime) which has nested components on it: http://jakarta.apache.org/tapestry/dtd/Tapestry_4_0.dtd";> Simple Date and Time Component

XTile over SSL

2006-08-09 Thread Ralph Johnston
We started using XTile in our webapp to do some quick calls to the server to get information and put them in the appropriate fields without doing a submit.  It works fine over an unsecure connection. However, we are having a problem with IE popping up a message about secure and non- secure i

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Dom Couldwell
Yep, Browser was a typo in my email, BrowserEvent was what I had in my code. Could the issue be that I'm using Tapestry 4.1 (from the download page http://www.apache.org/dyn/closer.cgi/jakarta/tapestry/tapestry-project-4.1-bin.zip) rather than the bleeding edge? Maybe this has been fixed in the

Re: [q]Button

2006-08-09 Thread Jesse Kuhnert
The docs must be wrong, but writing a button element should be valid. http://www.w3schools.com/tags/tag_button.asp On 8/9/06, corsair <[EMAIL PROTECTED]> wrote: Hello all! Why component Button renders tag ? When docs says: Button Provides a HTML form button element for attaching JavaScript o

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Jesse Kuhnert
Everything sounds reasonable to me. I've been able to add BrowserEvent (not "Browser" that you listed in your example) to the page here: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-examples/TimeTracker/src/java/org/apache/tapestry/timetracker/page/TaskEntryPage.java?view=markup

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Dom Couldwell
All I've done is add in the BrowserEvent parameter into the method in the java class. This results in the error I described. Please let me know if there is anything else I need to do or if this is a bug. Thanks, Dom Dom Couldwell Global Markets Research +1(212)250-7082

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Jesse Kuhnert
You shouldn't have to do anything other than define a BrowserEvent parameter. It's possible I have a bug wrt having BrowserEvent and other parameters set in the same method? If this is the case I will fix it asap. On 8/9/06, Dom Couldwell <[EMAIL PROTECTED]> wrote: OK, that seems to work now w

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Dom Couldwell
OK, that seems to work now when I add in explicit calls to addChild in the .script associated with the TabContainer component. Next question is about dynamically adding tabs. I can get a simple version of the Event Listener in Tapestry 4.1 working ok where one form element can have a given even

Creating a dateTime component

2006-08-09 Thread Vinicius Carvalho
Hello there folks. I need to create a datetime component composed of textfields and selects (text for hours, and selects for days/months/years). What's really tricking me is how can I be able to convert 5 fields into a date object? My first Idea was to create a AbstractFormComponent and user the w

Re: hivemodule.xml and classpaths and jetty6 and maven 2 snapshots..

2006-08-09 Thread Josh Long
I answered my own question. Amazing how that works sometimes... Apparently, this contribution which hitherto caused no problems was suddenly causing tapestry to wig out. remove it, and everything else is fine. Thanks for indulding me. Josh On 8/9/06, Josh Long <[EMAIL

RE: Help with Page Life cycle

2006-08-09 Thread Brian Duchek
Glad you liked my hit-list :) Basic forms are a field and a button. Advanced forms add all the bells and whistles of client-side validation, multiple submit buttons requiring different tags, variable form appearance, partial refresh form submissions, and so on... There's not really a specifically

Re: Help with Page Life cycle

2006-08-09 Thread Harry Harris
Thanks for the great explanation Brian, really brilliant :) Just another question, you mentioned a basic form, is there an advanced one? If so, what's the difference between them? Regards On 8/9/06, Brian Duchek <[EMAIL PROTECTED]> wrote: Couple things are real close to your understanding. He

Re: Open Source CRM

2006-08-09 Thread Konstantin Ignatyev
Friend of mine did something and hosts demo on my site: http://kgionline.com/crmt/app It is not complete but he has pretty darn good ideas about CRM systems (he buit few) and seeks somebody to teem up and finish the beast. --- Ernst Thielmann <[EMAIL PROTECTED]> wrote: > I'm searching for an op

RE: Help with Page Life cycle

2006-08-09 Thread Brian Duchek
Couple things are real close to your understanding. Here's a quick list of things to fill in a couple gaps that took me months to grok. :) * Pages render when requested by a browser, AND when a form is submitted to them. This is a fact of the framework. * cycle.isRewinding() identifies the renderi

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Dom Couldwell
I think the addChild call has implicitly been made as the contents of the first tab are displayed, it's just the actual tabs at the tab of the screen that are missing. I'll try adding in an explicit addChild call to the script of the LinkPane component. Dom Couldwell Global Markets Research +1

Re: Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Jesse Kuhnert
I think when you create a TabContainer directly you must call addChild() to it with a reference to the individual tabs themselves. (which must also be created directly) I do plan on adding this particular widget to Tapestry eventually, but have to make sure all other 4.1.1 issues are out of the w

Tapestry 4.1 + Dojo Tabs

2006-08-09 Thread Dom Couldwell
Hi, I'm trying to use Tapestry 4.1 to create a set of dynamic tabs using custom components. I've got some if it to work using the components that I've written but I can't seem to get the tabs themselves to be created, just the content pane. The main html looks like this:

Re: [OT] Source code management

2006-08-09 Thread Alex Kartashev
BitKeeper is clearly the way to go for this kind of stuff. -Alex Robin Ericsson wrote: On 8/5/06, Robin Ericsson <[EMAIL PROTECTED]> wrote: I'm looking for a SCM that has support for approval/rejection of code/patches before it goes into the trunk. To answer my own question I found a tool t

Open Source CRM

2006-08-09 Thread Ernst Thielmann
I'm searching for an open source CRM. Is there an open source CRM written in Tapestry 4? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT] Why jwcid?

2006-08-09 Thread Rui Pacheco
Ok, many thanks. On 8/9/06, Karthik N <[EMAIL PROTECTED]> wrote: every element that does not have the jwcid attribute is treated as "normal" html - tapestry does not care too much about it. every element that has jwcid is an indicator to tapestry that we're creating a tapestry component - so s

[q]Button

2006-08-09 Thread corsair
Hello all! Why component Button renders tag ? When docs says: Button Provides a HTML form button element for attaching JavaScript onclick event handlers. Tapestry 4.0 OS: Debian testing - To unsubscribe, e-mail: [EMAIL PROTE

Help with Page Life cycle

2006-08-09 Thread Harry Harris
Hello there! I've just started with tapestry, and I was wondering if anyone cares to give me a little help understanding page life cycle :) Its a simple crud scenario. So I have a page that implements PageBeginRenderListener, I read that this method is called just before page begins to render, so

Re: [OT] Why jwcid?

2006-08-09 Thread Karthik N
every element that does not have the jwcid attribute is treated as "normal" html - tapestry does not care too much about it. every element that has jwcid is an indicator to tapestry that we're creating a tapestry component - so such html takes a very different lease of life as a tapestry componen

[OT] Why jwcid?

2006-08-09 Thread Rui Pacheco
Hi all Its slightly off-topic, but I've been wondering about this for a while: why do we need to use "jwcid" to identify which elements in a form are to be treated as Tapestry components? Why not use the normal "name" and "id" identifiers used in HTML? Once again, I'm just curious, and sorry fo

hivemodule.xml and classpaths and jetty6 and maven 2 snapshots..

2006-08-09 Thread Josh Long
I was usuing tapestry 4.1.1-snapshot gleefully and one day it (maven and the snapshot with it) updated above and beyond 4.1.1-20060802.044417-5 (the particular snapshot iteration after which my build stop working around a week or two ago). I was receiving strange errors about classpath conflicts,