Re: Date component

2006-04-26 Thread Ivano
ient(false)), but how to manage the error message. Do you have an idea? Oscar Ivano <[EMAIL PROTECTED]> wrote: http://sundraw.ws/components.php Ivano. Oscar Picasso wrote: -- Ivano Pagano. - To unsubscribe

Re: Date component

2006-04-18 Thread Ivano
http://sundraw.ws/components.php Ivano. Oscar Picasso wrote: Is there a date component out there that would display drop down lists with days, months and years instead of a montly calendar as the DatePicker does. It should be parametrizable a least to allow to limit the year values to a

Re: Datepicker, is there a better way for birth dates?

2006-03-07 Thread Ivano
Look at http://sundraw.ws/components.php Ivano. Adam Zimowski wrote: How about creating custom component with tree dropdowns and your custom validator? This can be done quickly and can give you complete control over the data you put in it (and how you validate it). On 3/6/06, Stanczak Group

Re: Component Parameters and Properties

2006-03-01 Thread Ivano
properties, but you as a component user need not be aware of that. Hope it clears some foggy... =) Ivano Pagano. Alex Kartashev wrote: Hi guys, I am a new Tapestry 4 user. I've been researching Tapestry 4 for about a week now, even developed some toy apps. I am already sold on the va

Re: Service question

2006-02-27 Thread Ivano
X-Tile from Tapestry Deli? http://www.t-deli.com/ Ivano Pagano. Vinicius Carvalho wrote: Hello there! Is it possible to have a service bound to a specific listener on my page? I mean, my page still uses the default service, but one of it's methods is bound to a different service. Wha

Re: How to dynamically obtains component's form id?

2006-02-16 Thread Ivano
Hi Adam, sorry but I must be mistaken, probably you want to extend org.apache.tapestry.form.AbstractFormComponent. That should do? Enjoy! Ivano Pagano Adam Zimowski wrote: Thanks! That may be what I was looking for! But looking at the JavaDoc for getForm it says: "Returns the IForm

Re: How to dynamically obtains component's form id?

2006-02-16 Thread Ivano
If you write a component which should work inside a form I think you're supposed to implement the org.apache.tapestry.form.IFormComponent interface, which has a getForm() ,method. Bye Ivano Pagano. Jesse Kuhnert wrote: Not sure if this is in 4.0 officially, but TapestryUtils has a m

Re: How to find the right service ...

2006-02-07 Thread Ivano
Why do you need to build the url? What Tapestry version are you using? Ivano Pagano. Gerald Schöffel wrote: Hi, it is me again :) Again with some 'service trouble' ... An IExternalPage is called from the browser. in pageValidate (defined in MyBasePage only, all other pages are

Re: Spindle for Tapesty 4?

2006-02-01 Thread Ivano
Please, check older messages from the mail list. You'll find the current development state of Spindle for T4. Ivano Pagano. Cui, Fanzhe wrote: According the Spindle web site, it seems the current version of Spindle supports Tapestry 3. Does any one if there is new version that sup

Re: Using fieldTrackings

2006-02-01 Thread Ivano
My guess is that you won't need those fields unless you have some error to show and you want to tell the user which field was wrong. If this is the idea for the most common use of field validation, the consequence is that you don't want to take note of unused data. Ivano Pagano.

Re: JSF & Seam vs Tapestry & HiveMind

2006-01-30 Thread Ivano
he framework. Maybe Spring Webflow could be a better choice? Ivano Pagano. Andrew Pym wrote: Am I right in that JBoss has come up with a product which is very HiveMind like in Seam? http://docs.jboss.com/seam/reference/en/html/pr01.html The documentation puts Seam at the Context Management lay

Re: tapestry not really component based?

2006-01-27 Thread Ivano
appreciate your kind of considerations, as long as they're not only useless critics. My opinion here. Bye bye. Ivano Pagano. gaz jones wrote: i just wanted to get some opinions on it really and see if others were having the same problem etc... the problem that patrick described is exactl

Re: tapestry not really component based?

2006-01-26 Thread Ivano
age layout. Moreover you don't need to actually manage the iteration code to examine dynamic lists of components. The framework creates the loop variable and iterates through the list for you. Ivano Pagano - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Readonly attribute in textField set value in for loop

2006-01-25 Thread Ivano
ibute only when needed (just like the Checkbox component). If there's a neat solution other than this I'm interested, too. Bye bye Ivano Pagano. yosifun wrote: Hi, I have a form with for loop. the for loop generates a list of textfields. Some of the fields are readonly and some

Re: OutOfMemoryError

2006-01-25 Thread Ivano
Could it be that, redeploying the application, JBoss creates a new associated classloader, without releasing old classes and thus filling up the memory space? Ivano Pagano Jason Dyer wrote: I can't find the link right now, but I remember reading that when you load a class, it gets stor

Re: Eclipse (with spindle 3.2.13) + Tapestry 4 + DTD problem.

2006-01-24 Thread Ivano
All Hail oursaviour Geoff! Struggling against the freetime-eating monster to help us survive in the development battle! Thanks a lot Geoff. Ivano Pagano Geoff Longman wrote: Yes, Spindle currently ships with Tapestry 3.0.3 DTDs and does not understand Tapestry 4 at all. ... Once that&#

Re: Eclipse (with spindle 3.2.13) + Tapestry 4 + DTD problem.

2006-01-23 Thread Ivano
I believe that Spindle for Tap 4.0 is still in an early development. The latest release is intended for Tap 3.0.3 and so it could be that it gives you some DTD inconsistencies based on the version assumption. Ivano Pagano Daniel Lydiard wrote: Hello, I'm in the process of upgrading tap

Re: [DISCUSS] JDK 1.5 for Tapestry 4.1?

2005-12-21 Thread Ivano Pagano
+1 to switch for me. My company started this year with a java development department on 1.4, but we're almost completely switched to java 5 by now. I also think that the "Tap4.0 - java1.4", "Tap4.1 - java 5" compatibility choice would be nice and consistent. Ivano.

Re: Javascript file handling in Tapestry 3.0.3

2005-12-09 Thread Ivano Pagano
I think you can handle this using the import feature in the .script tapestry file. This way you can point at the same .js file for preview and runtime. Leon Pu wrote: Hi all, could anybody give me a hint about the Javascript file handling in Tapestry? Thanks a lot. Best regards, Leon ---

Re: Preventing multiple form submission within Tapestry

2005-11-29 Thread Ivano
could you send some code? Thanks and goodbye. Ivano Pagano William Keller wrote: Javascript solution is a good catch all - but I wasn't confident or happy just with relying on front end tricks. What' I've done, is very simple. I re-wrote the Form component. In the form compone

Re: How to add Body - Attributes ?

2005-11-22 Thread Ivano
the onload. Have a look at documentation for the Body and Script components to get the details. Bye Ivano. Rudolf Baloun wrote: Hi, i use Tapestry 4 Beta 13. I open with a buttonclick a new window. In some cases i want to add a body-attribute (onload="javascript:window.print();").

Re: Forcing a component to re-render itself

2005-10-24 Thread Ivano
Try looking for Ajax components in Tacos library or in T-Deli's XTile component. It enables you to partially reload the page. Ivano. Phil Ulrich wrote: Is there any way to force a single component to re-render itself? Right now I have a DirectLink that, when clicked, changes the s

Re: Less annotation is a GOOD THING

2005-10-12 Thread Ivano
r you (believe me, it's true), while preserving consistency and clarity for the newbies. -1 for automagical annotations =) Ivano Patrick Casey wrote: I'm with Scott on this one. I think that less auto-magic, not more, makes the framework infinitely simpler for new users to unders

Re: When/How to programatically modify a component before render.

2005-10-06 Thread Ivano
teCode" an initial value if it does not already have one. What am I doing wrong ? Thanks in advance, TappApp -- Ivano Pagano - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Submit component and "value" property

2005-10-03 Thread Ivano
Just a try, if you forbid the value parameter you can't preview the button label for the template in a HTML editor. Ivano. Jan Normann Nielsen wrote: Hi Is there any reason behind the choice that "value" is not a reserved parameter for the Submit component? If I use:

Re: Tapestry 3 question

2005-09-28 Thread Ivano
href but I want to go to tapestry page. How to do this ? Thanks, Ashish - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- I

Re: Passing values of components to javascript function

2005-09-15 Thread Ivano
Hi, are you sure that tapestry is not overwriting the components "id" attributes, thus breaking your javascript conditionals? Try checking the live output html produced by tapestry. Ivano. Ananya Goswami wrote: Hi all!!! I have a uploadmedia html page where I am uploading

Re: New Tacos website

2005-09-09 Thread Ivano
Nothing exciting to see because all the Live Demo links are broken? =D I can't seem to reach any link for the tacos.mine.nu server. Ivano. Jesse Kuhnert wrote: The http://tacos.sourceforge.net project web-site has been upgraded to use forrest for documentation and site generation. Other

Re: Searchable archive?

2005-09-08 Thread Ivano
7;s a *searchable* archive anywhere for this mailing list? -Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ivano P

Re: Need access to IValidator in writeLabelSuffix

2005-09-06 Thread Ivano
3.0.3. -- Ivano Pagano. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Need access to IValidator in writeLabelSuffix

2005-09-06 Thread Ivano
Following an example validation from TIA: public void *writeLabelSuffix*(IFormComponent component, IMarkupWriter

Re: rewind problem

2005-08-31 Thread Ivano
back or forward. I searched for this but I didn't find any documentation for my problem Thank you in advance! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Iv

Website User Manual Typo

2005-08-31 Thread Ivano
e persistent." A nice day to all of you, and... Tapestry GO GO GO! Ivano Pagano. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Back to Tapestry after an Year

2005-08-12 Thread Ivano
Maybe this could help: http://www.agileskills2.org/EWDT/ Bye Ivano Pagano. Varun Mehta wrote: Hi Fellas, I had studied Tapestry 3.0 beta, somewhere in Jan-Feb 2004, but could not go ahead and implement the same, as the learning curve for the team was a bit too high, and settled on for

Re: [ANNOUNCE] Tapestry 4.0-beta-4

2005-08-12 Thread Ivano
copies of currently v.3 compatible libraries, docs and other features? Thank you Ivano Pagano Howard Lewis Ship wrote: The fourth beta release of Tapestry 4.0 is now available. Tapestry is a component based web application framework that provides lots of functionality with minimal Java coding, a

Re: Tapestry Programmer wanted

2005-07-12 Thread Ivano
necessary refactoring? Just a shot... and good luck for your project. Ivano Pagano [EMAIL PROTECTED] wrote: I was looking on all kinds of freelance programmer websites like elance.com for experiences tapestry developers but it is really hard to find some...most are php or jsp programmers... Could

Re: proposal: central component repository workgroup

2005-07-06 Thread Ivano
ework. Anyone has an answer? Bye Ivano Pagano. Dov Rosenberg wrote: You guys should check out Project Wonder from the WebObjects guru's. It contains a lot of cool components that encompass some great best practices and has become the basis for a lot of successful projects. http://wonder.sourc

Re: Thank you, thank you, yeah, yeah, yeah

2005-06-30 Thread Ivano
odbye. Ivano Pagano Vinicius Carvalho wrote: Well I'd like to thank everyone in this list for helping me out. Specially Howard for such a great framework, Mike and Geoff for their spectacular plugins (sorry Geoff for what was told), Pablo, Jamie, Ron, and everybody else. Today I'

Re: Some Spindle news.

2005-06-24 Thread Ivano
+1 for me, too. An absolute must. Geoff Longman wrote: Hey, is this getting annoying? In other words, is everyone I'm reaching in this way already subscribed to the RSS feed? Should I stop sending mail to the lists for things I put in the blog? http://jroller.com/page/glongman/20050624#spindl

Re: Problem with ServletContext.getResource()

2005-05-05 Thread Ivano
worked, but it was deprecated. Anybody knows what the problem is here? Or there are some other better ways? Many Thanks. Henry -- Ivano Pagano - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Components vs Pages?

2005-05-05 Thread Ivano
both? What could be the other influencing/deciding factors? Thanks in advance, Kunal -- Ivano Pagano - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: newbie startup question

2005-05-05 Thread Ivano
o maven. So I'm asking if there's anyone here which have any hint for me to be aware of. I'll blog my experience if anyone is interested. Thanks for the great products -- Ivano Pagano. - To unsubscribe, e-mail: [E

Re: Drag inconsistent with Tapestry Palette in OS X

2005-04-27 Thread Ivano
As far as I can recall, I had a similar problem with drag-n-drop of several file types from the Package View to the Eclipse editor pane on OSX. Could it be that the issue is not Tapestry Palette-related but more general? Ivano. Todd O'Bryan wrote: I'm using Eclipse 3.0.2 with the lates

Re: If we call it Tapestry 4.0, not 3.x, Maybe we would do much

2005-04-22 Thread Ivano
Doesn't seem a meaninful remark since most IDEs give you the tools needed to flash out the difference with no effort. My 2s. Ivano Mind Bridge wrote: Hi, Do you have to 'implement' or 'extend' a particular type? Can you have multiple inheritance with that type or no

Re: Specification Inheritance

2005-04-21 Thread Ivano
ts only to create controllers (in MVC meaning) or unique complex features that the base component doesn't offer - I appreciate the great freedom offered in component reuse for different contexts, by just creating different jw descriptors Hope it helped, bye! Ivano. Pablo Ruggia wrote: H

Re: Access to static method

2005-04-21 Thread Ivano
Easy... david joffrin wrote: Hi, I can access class static flied via : @[EMAIL PROTECTED] in an HTML form like How can I deal with static methods? Is there a similar OGNL way? Thanks. David. - To unsubscribe, e-mail: [EMAIL P

Re: Problem with form component

2005-04-20 Thread Ivano
No need for apologies, I'm glad to be of any help. I had the same problem trying to extend the Form component myself. Have a nice day =) Ivano. Denis Souza wrote: Hi Ivano, I feel really stupid now. Looking again at the implementation in other form components, I found two lines at the bott

Re: Yet Another Stupid Syntax Question

2005-04-19 Thread Ivano Pagano
Maybe this could work for you? from the wiki FAQ: http://wiki.apache.org/jakarta-tapestry/FrequentlyAskedQuestions/OptionalParameters Ivano Patrick Casey wrote: Please disregard, I figured this out on my own. In case anyone's curious, this seems to work fine (although there may

Re: Problem with form component

2005-04-19 Thread Ivano Pagano
act method "automagically" you should also declare the properties in the component descriptor (i.e. "SafeForeach.jwc" or something alike). If anyone knows better, I would gladly receive a confirmation of my guess. Ivano. Denis Souza wrote: Hello, I'm trying to