Re: DatePicker not working after upgrading from 4.0.2 to 4.1

2006-09-11 Thread soir
Hello, I've found same problem recently. Try to use DropdownDatePicker component instead. Igor Anders Cessner wrote: > > Hi, > > I recently upgraded from 4.0.2 to 4.1 and noticed that the datepicker > doesnt > work anymore. > > when the page is loaded i get this error: Could not load 'tapes

PersistentPropertyDataEncoder

2006-09-11 Thread Borut BolĨina
Hi, anyone willing to share code, hivemind entries on this subject? Cheers, Borut On 24.4.2006 5:47, James Carman wrote: You can write your own PersistentPropertyDataEncoder and which uses the squeezers instead. You'd have to override the implementation of the tapestry.persist.Persistent

Re: Asynchronous form submission

2006-09-11 Thread Chaitanya Jeerage
not sure if the same applies to 4.1, but using "action" instead of "listener" in your form submit should solve the problem of list not being populated action="listener:formSubmit" instead of listener="listener:formSubmit" -Chaitanya On 9/12/06, Vinicius Carvalho <[EMAIL PROTECTED]> wrote: We

Re: "Force" a nested TextField to render container's name prefix?

2006-09-11 Thread Karthik N
Also, I'm coupling this with Tacos 4 beta 3. Can that have any bearing on how the name is being generated? I think the inference I'm coming to is that if a TextField is embedded in a custom component the text field name is not "influenced" by the name of the custom component. Could someone ple

Export/Import files

2006-09-11 Thread Peter Dawn
guys, i am trying to implement import and export of files within my web app. basically the user selects (checkbox ticks) what files they want to export and press submit, and then i perform the export and import of files. i have got the import/export working for one file. i mean when the user onl

Re: Asynchronous form submission

2006-09-11 Thread Vinicius Carvalho
Well the synchronous submission was fixed after I updated my version :P But I still get no updates on my list, event setting it as a persistent property. I'm adding values, and they are not being updated. As it is a persistent property I was hoping that re-loading the page would set it values, but

Re: Contrib Table Summarize

2006-09-11 Thread Mael Caldas
If I implement the decorator pattern by myself, how can I let the row only on the last position, even if the user change the sorter collumn? Do you have any SumDecorator already done? Thanks! Mael Caldas On 9/11/06, Mael Caldas <[EMAIL PROTECTED]> wrote: SumDecorator, decorator pattern? I d

Re: Contrib Table Summarize

2006-09-11 Thread Mael Caldas
SumDecorator, decorator pattern? I didn't see anything about that in any documentation... Can you give-me some example or a link? Thank you, Mael Caldas On 9/1/06, andyhot <[EMAIL PROTECTED]> wrote: cotrib:Table can't do anything by itself but I'd use the decorator pattern... public Collect

Asynchronous form submission

2006-09-11 Thread Vinicius Carvalho
Hi there! I'm trying to get two things to work with Tapestryt 4.1 and Ajax support: 1st a master detail form 2nd a auto populated form from server (I'll explain it better) The first one is pretty easy, but its reloading the entire page, I've checked the list and saw some discussions about it, I

Re: @EventListener question

2006-09-11 Thread Vinicius Carvalho
Thanks, that was it :D On 9/11/06, Chaitanya Jeerage <[EMAIL PROTECTED]> wrote: I have faced problems before while updating components other than div, may be I was doing something wrong, anyway afaik this should work I think this is what Josh was indicating too. -Chaitanya On 9/11/06,

Re: @EventListener question

2006-09-11 Thread Chaitanya Jeerage
I have faced problems before while updating components other than div, may be I was doing something wrong, anyway afaik this should work I think this is what Josh was indicating too. -Chaitanya On 9/11/06, Vinicius Carvalho <[EMAIL PROTECTED]> wrote: Josh, I really can't see how would t

Refreshing popup links

2006-09-11 Thread Dom Couldwell
Hi, I'm having a problem with asynchronous refreshes of table data not refreshing the associated popup link javascript. Basically I've got a set of tabs, under each tab there's a table and I switch between tabs using a DirectLink which asynchronously refreshes the contents of the display tabl

Re: @EventListener question

2006-09-11 Thread Vinicius Carvalho
Josh, I really can't see how would that work... since I'm using @Any, where would the text be rendered? I gave it a try and it is not working... Any other ideas? Regards On 9/10/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: Also, just as an FYI a lot of the examples I've been seeing lately incl

RE: Upload component browse button

2006-09-11 Thread Chris Norris
We've used an applet in the past. This one works well: http://www.javazoom.net/applets/jclientupload/jclientupload.html -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTED] Sent: Sunday, September 10, 2006 8:44 PM To: Tapestry users Subject: Re: Upload component browse button

Re: email service in 4.1, depreciation of IMonitor

2006-09-11 Thread livelock
Hi Jesse, I did not have the time to look into it, sources are included here: http://www.actualis.com/tapestry/tapestry-email-0.1.0.zip My guess is that it is being used to send out emails before the page is rendered. At least Henri wrote somewhere it uses its own cycle. But what do I know... Re

T4.1 Ajax DirectLink

2006-09-11 Thread Manri Offermann
Hi Tapestry Group, I have a question regarding the DirectLink with async=true in 4.1 or 4.1.1-Snapshot. Let's say I have a page with an Ajax Directlink, a dynamic area (which will be updated by DirectLink) and a counter component. When I click on the Direct Link the dynamic component is upda

Re: Generate Unique Javascript IDs?

2006-09-11 Thread Erik Johansson
Hi, 1. 'time$' is just a prefix string making sure that all generated id's begin with 'time$', in you r case I guess it would be 'pic' 2,3. These are the coordinate values, the 2 and 1 in your 'pic_2_1' These are simply generated using the index parameter with two nested for loops eleme

RE: @EventListener and dojo topics

2006-09-11 Thread Ben Sommerville
Jesse, That's what I suspected, thanks for the confirmation. I'm not sure what problem topics are solving in general, but in my specific case a dojo component I want to use (TreeV3) sends its events (or at least some of them) via topics. I wanted to hook those events to a server call. I'll in