Re: EventListener called several times

2006-09-28 Thread Christian Dutaret
https://issues.apache.org/jira/browse/TAPESTRY-1100 I tried to post this the "mark reynold's way", with a maven2 sample application attached, except that I don't use Jetty (I use Tomcat), so no Jetty configuration. Hope this helps Ch. 2006/9/27, Jesse Kuhnert <[EMAIL PROTECTED]>: HmmmCan y

Submit Windows Print job

2006-09-28 Thread Josh Joy
Hi All, Is it possible to create a link thru tapestry such that when a user clicks it, it opens up the windows print screen dialog box? Thanks, Josh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

Error redirecting to page

2006-09-28 Thread CIJOML
Hello, when redirecting to page I am getting exception: An exception has occurred. You may continue by restarting the session. org.apache.tapestry.ApplicationRuntimeException Not all tags closed in template. component: [EMAIL PROTECTED] location: context:/WEB-INF/FirmaList.page, line

Re: Submit Windows Print job

2006-09-28 Thread andyhot
html+js can do this: PRiNT Me Josh Joy wrote: > Hi All, > > Is it possible to create a link thru tapestry such > that when a user > clicks it, it opens up the windows print screen dialog > box? > > Thanks, > Josh > > - > To unsu

Re: Error redirecting to page

2006-09-28 Thread andyhot
Could be a parser issue with the comments... Which exact Tapestry version is this on? 3.0.3, 3.0.4 ? Try removing the comment between your static bindings CIJOML wrote: > Hello, > > when redirecting to page I am getting exception: > > An exception has occurred. > > You may continue by restarting

Re: Error redirecting to page

2006-09-28 Thread CIJOML
it is tapestry-3.0.3.jar Michal Dne čtvrtek 28 září 2006 14:04 andyhot napsal(a): > Could be a parser issue with the comments... > Which exact Tapestry version is this on? 3.0.3, 3.0.4 ? > > Try removing the comment between your static bindings > > CIJOML wrote: > > Hello, > > > > when redirectin

Re: Error redirecting to page

2006-09-28 Thread andyhot
Actually, your *.html file seems to be the problem. *Not all tags closed in template.* is the exception message CIJOML wrote: > it is tapestry-3.0.3.jar > > Michal > > Dne čtvrtek 28 září 2006 14:04 andyhot napsal(a): > >> Could be a parser issue with the comments... >> Which exact Tapestry

Contrib:Table pagination and validation issue

2006-09-28 Thread Vinicius Carvalho
Hello there! When using the pagination of the contrib:table that is inside a form it is displaying errors of my validation delegate (since the form fields are blank). I override this with the property selection using a onRefresh method, does it work for contrib as well? Regards -- IBM Certified

Nested Forms

2006-09-28 Thread John Corro
I'm new to Tapestry and am trying to wrap my head around some differences from other frameworks I've used. I've been trying to do research on if/how Tapestry supports nested forms. I'm having a hard time finding info on this, but am getting the impression it's not supported. Can anyone point

4.1 Form Validation: look at two fields at once?

2006-09-28 Thread Peter Beshai
Is it possible to make a validator that can compare the values of two form components at the same time? I have an Upload component for uploading files directly and a TextField component for uploading files from a URL. The user is supposed to fill in only one of the fields. I would like to have a

Re: 4.1 Form Validation: look at two fields at once?

2006-09-28 Thread andyhot
here's an example http://issues.apache.org/jira/browse/TAPESTRY-410 Peter Beshai wrote: > Is it possible to make a validator that can compare the values of two > form components at the same time? I have an Upload component for > uploading files directly and a TextField component for uploading file

Re: Nested Forms

2006-09-28 Thread andyhot
Well, even html ( http://www.w3.org/TR/html401/interact/forms.html ) doesn't support nested forms! What are you trying to achieve? John Corro wrote: > I'm new to Tapestry and am trying to wrap my head around some differences > from other frameworks I've used. I've been trying to do research on i

Listing Current User Sessions

2006-09-28 Thread Daniel Jue
Hello, Does anyone have an example of listing current user sessions on a page? From the administrative pages of my app, I'd like to see who's logged into the app at the time. I guess it's almost the same functionality as google talk in gmail, but I don't necessarily need to send messages at the

Re: Contrib:Table pagination and validation issue

2006-09-28 Thread Vinicius Carvalho
onrefresh did not work... :( I've noticed that the links points to a Tapestry javascript function: Tapestry.submitform. Just one question, why pagination invokes a form submission? Any ideas on how to clear the delegate messages? Regards On 9/28/06, Vinicius Carvalho <[EMAIL PROTECTED]> wrote:

Re: Contrib:Table pagination and validation issue

2006-09-28 Thread andyhot
Vinicius Carvalho wrote: > onrefresh did not work... :( I've noticed that the links points to a > Tapestry javascript function: Tapestry.submitform. Just one question, > why pagination invokes a form submission? cause otherwise you would lose the updated inputs. This was the original idea, before

Re: Contrib:Table pagination and validation issue

2006-09-28 Thread Vinicius Carvalho
ouch... I guess I'll have to dump my validators ... and validate each input on the save button, those side effects are too dangerous for my screen. :( Regards On 9/28/06, andyhot <[EMAIL PROTECTED]> wrote: Vinicius Carvalho wrote: > onrefresh did not work... :( I've noticed that the links poin

Button values dont print

2006-09-28 Thread Peter Dawn
guys, i am using tap3. has anybody else noticed this, but everytime i print a page which has a button on it, the buttons value does not print. the button is a tap component with the value set as label="message:text" any ideas.

Re: Contrib:Table pagination and validation issue

2006-09-28 Thread andyhot
Vinicius Carvalho wrote: > ouch... I guess I'll have to dump my validators ... and validate each > input on the save button, those side effects are too dangerous for my > screen. It's not as bad as it sounds. That's how Tap3 worked. It simply made sure that on rewind you'd iterate over the same el

Re: Button values dont print

2006-09-28 Thread andyhot
What's the generated html? Perhaps its a css issue ? Peter Dawn wrote: > guys, > > i am using tap3. has anybody else noticed this, but everytime i print > a page which has a button on it, the buttons value does not print. the > button is a tap component with the value set as label="message:text" >

Re: Button values dont print

2006-09-28 Thread Peter Dawn
the html is and in my css I have, .buttonSpecial { font: #FF; and the rest } any ideas. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Button values dont print

2006-09-28 Thread Peter Dawn
sorry i meant color: #FF; - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Button values dont print

2006-09-28 Thread andyhot
so, it's not a tapestry issue, is it? Peter Dawn wrote: > the html is and in my css > I have, > .buttonSpecial { > font: #FF; > and the rest > } > > any ideas. > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For addit

Re: Button values dont print

2006-09-28 Thread Peter Dawn
dunno. i have done the right thing in tapestry, in the css and its still not working. if nobody else has this issue, then it must be my implementation, though i cant understand how difficult it could be. thanks anyways. - To uns

Re: Button values dont print

2006-09-28 Thread Steve Shucker
I don't know if this will work, but you can try adding another stylesheet just for printing that will override the button's style. type="text/css" /> Then set the color or other attributes for buttonSpecial to be something different. It could be something as simple as the printer thinking it

Re: @Persist("session") does not make the accessor fetch from session everytime

2006-09-28 Thread Jesse Kuhnert
That sounds like a bug in "theory" to me.. If you log it in JIRA I might try and look at it while I'm looking at the other concurrency related items. (maybe I'll poke Howard real quick about it too, sounds like a delicate area to mess with ;) ) On 9/28/06, B.S.Navin <[EMAIL PROTECTED]> wrote: H

Re: EventListener called several times

2006-09-28 Thread Jesse Kuhnert
Awesome thanks, I'll look at it during the next triage. (Which should be soon now since the date i18n issues seem to be fixed. ) FYI - you don't even need a jetty configuration file to configure it with maven. It's literally like 2-3 lines of configuration in the pom.xml file. On 9/28/06, Christ

Re: Submit Windows Print job

2006-09-28 Thread Jesse Kuhnert
Yep...Some might even suggest that in this scenario you could provide a page with a slightly modified @Border (if you are using such a component) to cut out cruft not needed in printing.. (Like navigation / etc..) On 9/28/06, andyhot <[EMAIL PROTECTED]> wrote: html+js can do this: PRiNT Me Jo

Re: 4.1 Form Validation: look at two fields at once?

2006-09-28 Thread Jesse Kuhnert
FYI I'll be adding this feature in during my next "big push". (Or something like it at least) On 9/28/06, andyhot <[EMAIL PROTECTED]> wrote: here's an example http://issues.apache.org/jira/browse/TAPESTRY-410 Peter Beshai wrote: > Is it possible to make a validator that can compare the values

Re: Nested Forms

2006-09-28 Thread Jesse Kuhnert
Yeah I'm sure I've tried to nest forms at one point as well(Tapestry really starts making it easy to stack components around like this so it's easy to expect it everywhere ;) ) ...None of my web browsers felt the same way.. On 9/28/06, andyhot <[EMAIL PROTECTED]> wrote: Well, even html ( ht

Re: Listing Current User Sessions

2006-09-28 Thread Jesse Kuhnert
Yep...I'd definitely take a look at some of the hivemind services for something like this. (I really need to move those docs over to the 4.1 pages as well...Was hoping to modify hivedoc to link directly to API javadocs first though.) What do you think about the javadoc idea james? On 9/28/06, Da

Re: Contrib:Table pagination and validation issue

2006-09-28 Thread Jesse Kuhnert
Why don't you just separate the table from your other form and have two forms instead? Most of the form based functionality of the table is best realized when doing things like providing a "search" component or nesting form fields within table columns. (Like checkboxes ..etc...Soon to be InlineEdi

Re: Button values dont print

2006-09-28 Thread Jesse Kuhnert
You are missing a value="" attribute for some reason. Are you sure that the label="message:something" works for Tap3? I thought that was a hivemind only kind of feature in t4 > (not sure what it looks like in T5 exactly yet) On 9/28/06, Steve Shucker <[EMAIL PROTECTED]> wrote: I don't know if

Setting up css style in ajax validation

2006-09-28 Thread Daniel Castro
Guys, I am using a validation via ajax and done no further configuration...The screen that displays the error messages is contrasting with my form screen so I would like to configure it. Is there any specific place to configure it? -- We shall go on to the end. We shall fight in France

Re: Setting up css style in ajax validation

2006-09-28 Thread Jesse Kuhnert
Yeah, just define the css rules however you would for anything else . Documentation for it can be found here: http://tapestry.apache.org/tapestry4.1/UsersGuide/clientside-validation.html On 9/28/06, Daniel Castro <[EMAIL PROTECTED]> wrote: Guys, I am using a validation via ajax and done no fu

Re: @Persist("session") does not make the accessor fetch from session everytime

2006-09-28 Thread B.S.Navin
JIRA created - https://issues.apache.org/jira/browse/TAPESTRY-1101 On 29-Sep-06, at 6:55 AM, Jesse Kuhnert wrote: That sounds like a bug in "theory" to me.. If you log it in JIRA I might try and look at it while I'm looking at the other concurrency related items. (maybe I'll poke Howard real

Re: Button values dont print

2006-09-28 Thread Peter Dawn
guys, the label bit works for tap3, i have used it in many places. and my HTML looks like this, but inspite of having the value bit, it doesnt print. i mean i can visually see it, but when i print it it doesnt work. will try and spend some more time on it over the weekend. ---

Re: Button values dont print

2006-09-28 Thread Jesse Kuhnert
AhSounds like a "browser" issue then ? ;) On 9/29/06, Peter Dawn <[EMAIL PROTECTED]> wrote: guys, the label bit works for tap3, i have used it in many places. and my HTML looks like this, but inspite of having the value bit, it doesnt print. i mean i can visually see it, but when i print

beware new 4.1.1 snapshot builds

2006-09-28 Thread Jesse Kuhnert
Just thought I would give people a heads up that a new build is coming out in case anyone is getting them via maven2. As far as I can tell everything is working fine (if not much much better than before), but this is a major new upgrade for the as yet unreleased dojo 0.4 version... (I won't steal