page size

2007-10-24 Thread michael
hi we are evaluating tapestry for a web application for mobile phones. we have to keep the size of the pages low ( < 10kb ). so the question is if it is possible to have tapestry not loading dojo, because its size is bigger the 50kb. Thanks in advance. mich

page size

2007-10-24 Thread michael
hi we are evaluating tapestry for a web application for mobile phones. we have to keep the size of the pages low ( < 10kb ). so the question is if it is possible to have tapestry not loading dojo, because its size is bigger the 50kb. Thanks in advance. mich

page size

2007-10-24 Thread michael
hi we are evaluating tapestry for a web application for mobile phones. we have to keep the size of the pages low ( < 10kb ). so the question is if it is possible to have tapestry not loading dojo, because its size is bigger the 50kb. Thanks in advance. mich

Re: conditional expression

2013-11-17 Thread Michael
@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org -- Best regards, Michael Gagauz - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

How to get current element in mixin

2014-08-29 Thread Michael
I need a mixin which can be attached to different elements (with and without body). The mixin wraps original element with another and adds some classes to the original. How I can get current element while render? I'd use writer.getElement() in render body but its not triggered in components with em

Re: Facebook Federate 400 error with session id.

2014-11-23 Thread Michael
If you're using tomcat attribute disableUrlRewriting="true" to . Michael Gagauz 23.11.2014 21:38 пользователь "George Christman" написал: > So the first time a user attempts to authenticate my app using facebook, > they always experience a 400 error. This g

Tapestry 5.3.6 JSONObject No null checking leads to NPE in Palette component

2013-09-16 Thread Michael
)) { session.print(NULL.toString()); return; } solves the problem. -- Best regards, Michael Gagauz

Re: Renaming options in select menu using .properties

2013-09-19 Thread Michael
ing 5.4.22 with blankOption="literal:NEVER" added as a parameter to my select component. On Thu, Sep 19, 2013 at 10:14 AM, Michael Gagauz wrote: No idea. Which version of tapestry do you use? Try to add blankOption="never" param to select. 19.09.2013 18:07, George Christman п

Re: Dynamic templates vs > (and other special characters)

2013-09-27 Thread Michael
;>'. I end up with'>' which is not what I want. I know the suggestion for tml files is to use outputRaw but that does not work in a dynamic template. Thanks Barry -- Best regards, Michael Gagauz - To

Re: JSR-168/JSR-286 revisited --- what's happening at the 'neighbours'

2008-01-09 Thread Michael Lake
Rather than posting to the list, it'd probably be more helpful to vote on the issue here: https://issues.apache.org/jira/browse/TAPESTRY-1304 -m Mark Horn wrote: I would be interested in portlet support in T5 On 1/9/08, Jan Vissers <[EMAIL PROTECTED]> wrote: Seems like my question/thread

T5: Packaging 3rd Party Javascript Libraries

2008-01-11 Thread Michael Lake
Let's say Sven, Chris, and I each are creating component libraries for re-use and each of us are using the ExtJs library. And supposing that a T5 project used all of our libraries, then there could potentially be a conflict on the client side because multiple javascript files of the same li

Re: T5: regexp for commas

2008-01-14 Thread Michael Courcy
Did you try this regexp with in a regular java program ? Thomas Zenglein a écrit : Hello everybody, I want my textfield to allow a couple of signs. For that I have the following code. @Validate("required,regexp=[<>a-zA-ZöäüÖÄÜß0-9\\.\"\'?!§$%&\\-+*:/ ]+") public void setName(String name) {

Re: Antw: Re: T5: regexp for commas

2008-01-14 Thread Michael Courcy
well I wonder if the comma is not playing a role in the interpretation of the annotation ? did you try to replace the comma by its unicode value : \u002C Thomas Zenglein a écrit : Hello Michael, I've just tried following lines. public class Test { public static void main(String[]

Re: T5: regexp for commas

2008-01-15 Thread Michael Courcy
check. Well you could do that inside the onValidate method of your form ... No ? THX Thomas Michael Courcy <[EMAIL PROTECTED]> schrieb am Mo, Jan 14, 2008 um 4:18 in Nachricht <[EMAIL PROTECTED]>: well I wonder if the comma is not playing a role in the interpreta

Re: [ANN] Tapestry/Seam integration

2008-01-15 Thread Michael Courcy
well. This will be the first module for Tacos 5. Unfortunately I can't upload the snapshots yet because some work is still needed. But you can expect the snapshots in the next days. -- Michael Courcy http://courcy.blogspo

T5: How to influence the order JavaScript libraries are loading

2008-01-15 Thread Michael Lake
I've got a page with two Js Libraries included using the @Inject @Path("..."), etc. The one .js library immediately depends on variables defined the the other .js library(meaning that it's not waiting until page ready/DOM is loaded) but the order in which tapestry is outputting the

T5+IDEA: Suggestions for getting .tml files copied to the target/test-classes folder of a maven project

2008-01-16 Thread Michael Lake
I've got my component library set up in the same fashion as the "tapestry-core" project. I really like this approach of having an integration test app in the /src/test/app1 folder. The problem is when I use IDEA to make the module before running a test. some non-.java files(.tml, .css, etc) u

Re: Tapestry & IDEA

2008-01-16 Thread Michael Lake
For T5, in lieu of jettyLauncher you might try looking into extending the following class somewhere in your test sources: org.apache.tapestry.test.JettyRunner make a wrapper around it with a class that has a static main function. there's an example of it in "tapestry-core" sources org.apac

T5: Encoder and Loop

2008-01-16 Thread Michael Courcy
x27;t really grasp it, but does it mean that with an encoder it's possible to generate loop of textFields with validation for instance, or make me able to edit a whole collection inside a form ? If yes, someone could point examples or give hints ? Thanks a lot. -- Michael C

Re: Using a component in a subpackage

2008-01-17 Thread Michael Courcy
I found the answer myself it's explain here http://lombok.demon.co.uk/tapestry5Demo/test/components/colorpickerdemosource sorry Michael Courcy a écrit : Hi I made a component call Personne in ${tapetry-root-package}/components package and it works fine But I'd like to move my co

Re: [T5] Choosing components at runtime

2008-01-17 Thread Michael Courcy
ied to do this by putting a delegate component, but i couldn't inject in runtime an unknowed component in compilation time. What do you think i can do? Is this possible? -- Michael Courcy http://courcy.blogspot.com -

Re: T5 Proposal: Provide a Mechanism to Force Cache Flushing

2008-01-18 Thread Michael Lake
This is precisely the stuff I've been working on for the past few weeks. I too am successful with pulling templates from a DB and so far, so good. I'll need to dive back into the code to see if there's a way to do a template parse and be able to catch an exception if there's an error. in

Re: T5: Encoder and Loop

2008-01-19 Thread Michael Courcy
ady yet. ok, but now the intent is confirmed and I can do my search on my own. when I'll better understand it, I'll make a wiki page with an example. Thanks for your answer. On Jan 16, 2008 1:29 PM, Michael Courcy <[EMAIL PROTECTED]> wrote: Hi, Reading the

Re: [T5] Choosing components at runtime

2008-01-19 Thread Michael Courcy
I don't unsderstand the sentence this way, I woud think something like that : well, I may be completly wrong ... I'm gonna try it and comeback to you to see if I find something interesting. but myComponent variable is always null there... What do you think? Regards,

Re: [ANN] t5components - release 0.5.3

2008-01-19 Thread Michael Courcy
Really impressing Go on !! Sven Homburg a écrit : Hi there, the t5components release 0.5.3 is out now. project page with demo click here http://213.160.23.119:8080/t5components/ - best regards Sven -- Michael Courcy http://courcy.blogspot.com

Re: [ANN]: Seam for T5

2008-01-21 Thread Michael Courcy
? Thanks, A.C. Igor Drobiazko wrote: Hi all, Seam integration with Tapestry 5 is available in Tacos 5. http://tacos.sourceforge.net/tacos5/tacos-seam/index.html -- Best regards, Igor Drobiazko -- Michael Courcy http://courcy.blogspot.com

Layout component

2008-01-21 Thread Michael Courcy
feedback are welcome and wanted. -- Michael Courcy http://courcy-en.blogspot.com http://courcy.blogspot.com

Re: Antwort: Layout component

2008-01-22 Thread Michael Courcy
Kristian, I didn't know that, I'll try it. Thanks. Kristian Marinkovic a écrit : hi michael, great tutorial... had to figure out this myself :) you can simplify the getLeftContent() method if you use the value attribute of the Parameter annotation: @Parameter(value="block

Re: Writing a XML editor component (Tree view) in tapestry 5

2008-01-23 Thread Michael Courcy
Authority. FSA Register number 114059. -- Michael Courcy http://courcy.blogspot.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Iteration order on org.apache.tapestry.AbstractComponent#getComponents()

2008-01-24 Thread Michael Häusler
from java.util.HashMap to java.util.LinkedHashMap (see the patch to 4.1.3-final below). What do you think about such a change? Best regards, Michael Häusler Index: C:/Dokumente und Einstellungen/michael.haeusler/workspace/tapestry/tapestry-framework/src/java/org/apache/tapestry

Re: [T5] Spring and T5: A match made in heaven

2008-01-24 Thread Michael Lake
Emmanuel - Spring is brain-dead simple to integrate with tapestry 5. If you need help Emmanuel, you may email me relevant bits of your code and I would be more than happy to help you. Really though, there's great documentation on the site to show you exactly how to do this, Emmanuel. I, a

Re: [T5] Spring and T5

2008-01-24 Thread Michael Courcy
me of the other ambitious and innovative web framework out there. Wicket probably? Regards, Emmanuel -- Michael Courcy http://courcy.blogspot.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Is there an example using ajax with tapestry to refresh a table?

2008-01-28 Thread Michael Courcy
_ Climb to the top of the charts! Play the word scramble challenge with star power. http://club.live.com/star_shuffle.aspx?icid=starshuffle_wlmailtextlink_jan -- Michael Courcy http://courcy.blogspot.com http://courcy-en.blogspot.com

T5: How easy/hard is it to use tapestry-test (Jetty) with JNDI?

2008-01-28 Thread Michael Lake
Anyone have any ideas about how someone should go about doing this? thanks, -mike - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Editing a collection

2008-01-28 Thread Michael Courcy
nd logging show me that the list of users is never updated whatever the input in the textfields Is all that normal or did I miss a key concept -- Michael Courcy http://courcy.blogspot.com http://courcy-en.blogspot.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [ANN] t5components - release 0.5.4

2008-01-28 Thread Michael Gerzabek
xperiences? BTW adding the jar by hand did work. And again *T5 rocks* and these components give a powerful add on. My 2 cents. Michael Sven Homburg schrieb: Hi there, the t5components release 0.5.4 is out now. special thanks to Tod Orr and Ted Steen to let include their components into T5

T5: BeanEditForm doesn't pick up .properties

2008-01-29 Thread Michael Gerzabek
act] = name of file[Contact]. I use the grid to browse through a dataset and invoke the page [Contact] with the beaneditform in REST style. The Bean is provided in edit mode. But no labels are there. This worked in 5.0.6. What am I missing? Michael [1] http://tapestry.apache.org/tapestry5

Re: Editing a collection

2008-01-29 Thread Michael Courcy
uot;user.loginUser" determines the field that gets updated when the form is submitted. So as you've got 6x fields that point to the same field in your form, that's what gets updated (take a peek at 'user' to confirm this). I think you need to override the 'value' set

Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek
) ... 75 more I tried to add commons HTTPC3.1 but without success. Which version of commons HttpClient does the component need? BTW: In the documentation is which should be Michael Sven Homburg schrieb: Hi there, the t5components release 0.5.4 is out now. special thanks to Tod Orr

Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek
Chris Lewis schrieb: Perhaps its a bug that has been fixed in svn. You can use the svn or just wait for the snapshots to be regenerated :-) That will be tomorrow ;) I'm fine with that. - To unsubscribe, e-mail: [EMAIL PROTECT

Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek
Chris, Thank you for your comments. It's true, after I ran into problems with missing labels in beaneditform I switched to 5.0.10-SNAPSHOT. I tried to contribute FactoryDefaults but there was no difference between "false" and "true". The exception page stays '

Re: Editing a collection

2008-01-29 Thread Michael Courcy
Hi François Thanks a lot, but actually my goal was more on understanding the loop inside the form and how the model is updated in such situation. I keep your link though, I'll have a look on it. Michael. Francois Armand a écrit : Michael Courcy wrote: You mean that using

Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek
ou've included into your Demo section? I have no clue how to implement this actionlink that you nicely put into to Demo. Thank You Michael Sven Homburg schrieb: hi michael, you ve tried it with the right version of HTTPC. is this jar in your WEB-INF/lib also? 2008/1/29, Michael Gerzabek <[EM

T5 BeanEditForm prints no labels was: [ T5: BeanEditForm doesn't pick up .properties]

2008-01-29 Thread Michael Gerzabek
Actually I was wrong. The property file get's read but the labels on the page are alsways empty. Any clues? Michael Michael Gerzabek schrieb: hi guys I'm using T5.0.9. submitLabel="Änderungen speichern" reorder="title, firstName, lastName, birthDay, EMail, phone,

Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek
I set 5.0.10-SNAPSHOT this morning. I did now a clear project and put configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, "false"); into my AppModule.java. The exception reports are cut. Michael Chris Lewis schrieb: That sounds off. I'm using snapshot from svn and it

Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek
cool THNX! Sven Homburg schrieb: demo application sources de.hsofttec t5components-app 0.5.4 t5components T5Components Maven Repository http://213.160.23.119:8080/t5components/maven-repository

Re: T5: BeanEditForm doesn't pick up .properties

2008-01-29 Thread Michael Gerzabek
ienname middleName-label=Weitere Vornamen eMail-label=E-Mail-Adresse birthDay-label=Geburtstag mobile-label=Mobiltelefon phone-label=Telefon fax-label=FAX site-label=Website pictureURL-label=Link zu Bild Howard Lewis Ship schrieb: Hard to see from this, can we see your .properties files? On

T5: BeanEditForm and accept-charset

2008-01-29 Thread Michael Gerzabek
se. In the documentation I couldn't fint any hints on how to set the accept-charset attribute. Where do I have to look? Help on this appreciated. Thanks, Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: T5: BeanEditForm and accept-charset

2008-01-29 Thread Michael Gerzabek
Oh, that's easy! Thank you Harald /M Geritzer schrieb: Now I have a lot of beans and I want to make use of BeanEditForm to edit these. In the documentation I couldn't fint any hints on how to set the accept-charset attribute. Where do I have to look? had that problem too...after setting a

T5: TypeCoercer uses unsafe route for void to Integer

2008-01-30 Thread Michael Capper
Hi, I've got a BeanForm in my Tapestry 5.0.9 Application, with the Bean expecting some Integers as input. When I submit the form without entering any data in these fields, I get an RuntimeException in the TypeCoercerImpl (line 130), because while converting my void to Integer it uses void -->

Re: Tapestry 5 - Custom Component Validation

2008-01-31 Thread Michael Courcy
I can pass the error flag to the component class (Attrlabel) which will rend the component. Thanks in advance! Xinhua -- Michael Courcy http://courcy.blogspot.com http://courcy-en.blogspot.com - To unsubscribe, e-mail

Re: T5: checkbox questions

2008-01-31 Thread Michael Courcy
t shown in the example below? even I remove the ? I'd like to display that text after the check box. 2. How to implement this: I will enable submit button if the checkbox is checked? Thanks. A.C. & nbsp; Check here to approve   -- Michael Courcy http://courcy.blogspo

Re: Maven Support

2008-01-31 Thread Michael Lake
For those of you IDEA users, i did a little roundup of information regarding maven2 integration: I was thinking of trying out IDEA's EAP release of 7.0.3 found here: http://www.jetbrains.net/confluence/display/IDEADEV/Selena+EAP But then I dug into the Jetbrains' JIRA for maven integration:

Re: Maven Support

2008-01-31 Thread Michael Lake
n JIRA. Every release since the first introduction of it has had a bug fixed that I've noticed. On Thu, Jan 31, 2008 at 1:42 PM, Michael Lake <[EMAIL PROTECTED]> wrote: For those of you IDEA users, i did a little roundup of information regarding maven2 integration: I was thinkin

Re: Improved Tapestry Component Reference

2008-01-31 Thread Michael Courcy
.html Feedback is most welcome! -- Michael Courcy http://courcy.blogspot.com http://courcy-en.blogspot.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Improved Tapestry Component Reference

2008-01-31 Thread Michael Courcy
d-tooled documentation file. The hand-tooled documentation gives extra examples and notes. You can view the current documentation set here: http://tapestry.formos.com/nightly/tapestry5/tapestry-core/ref/index.html Feedback is most welcome! -- Michael Courcy http

Re: Tapestry 5 - Custom Component Validation

2008-01-31 Thread Michael Courcy
ge to component(AttLabel). I do not want to use @Persist to do this, but like to add it to something like request object. So what annotation can I use? Can you show me the way (some codes) to do this? Xinhua Michael Courcy wrote: I you have control on the validation why not putting a flag in

Re: Improved Tapestry Component Reference

2008-01-31 Thread Michael Courcy
lcome! -- Michael Courcy http://courcy.blogspot.com http://courcy-en.blogspot.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: T5: BeanEditForm doesn't pick up .properties

2008-02-01 Thread Michael Gerzabek
ng ${site-label} into your template somewhere to see what > you get. > > On Jan 29, 2008 10:54 PM, Michael Gerzabek <[EMAIL PROTECTED]> > wrote: >> -- Contact.tml -- >> http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> >> >> &

Re: T5: BeanEditForm doesn't pick up .properties

2008-02-01 Thread Michael Gerzabek
oh, and when I debug the page and check the ComponentResources the file is there! But somehow it doesn't get read in rendering the page. Michael Michael Gerzabek wrote: > > Howard, > > I have the setup that the maven archetype prepares. So the anwser is yes. > The .prope

T5 image component

2008-02-01 Thread Michael Courcy
Hi list, Do you know if there's a good image component library for reducing, rotating or writing on image with a little cache management ? I'm not against the idea of doing it (on the contrary) I just want to make sure it has not been done yet. Cheers -- Michael C

Re: T5 image component

2008-02-01 Thread Michael Courcy
Ok Thus I wait a bit for listening that such library doens't exist and then we start the job Chris Lewis a écrit : I don't, but I'd gladly contribute code/ideas as I've done some image work and will also probably need such a lib. chris Michael Courcy wrote: Hi list, Do

My Compliments to T5 [Re: What does it take to be banned from this mailing list?]

2008-02-01 Thread Michael Gerzabek
ould collect user stories about learning T5, implementing projects with T5, enhancing T5, and other related stories. Thoughts? Michael Adam Zimowski schrieb: Why can't we just obey one simple rule on this mailing list: DO NOT FEED THE TROLLS I guarantee that if troll e-mail go unans

Re: T5: BeanEditForm doesn't pick up .properties

2008-02-01 Thread Michael Gerzabek
here maybe a switch to display/ not display? I mean the bean properties get displayed. ? Howard Lewis Ship schrieb: Sorry, should be ${message:site-label}, to verify that your .properties file is in the fight place and readable. On Feb 1, 2008 2:54 AM, Michael Gerzabek <[EMAIL PROT

Re: T5: BeanEditForm doesn't pick up .properties

2008-02-01 Thread Michael Gerzabek
se birthDay-label=Geburtstag mobile-label=Mobiltelefon phone-label=Telefon fax-label=FAX site-label=Website pictureURL-label=Link zu Bild As I said, when I debug the resources get picked up. But in the page they are not expanded. Michael -

Re: T5: BeanEditForm doesn't pick up .properties

2008-02-02 Thread Michael Gerzabek
ate the problem, I'm sure I can whip up a fix. On Feb 1, 2008 2:26 PM, Michael Gerzabek <[EMAIL PROTECTED]> wrote: Howard Lewis Ship schrieb: Havning trouble following you ... what is the name, location and contents of your .properties file? Does the expansion work or not wo

Re: T5: BeanEditForm doesn't pick up .properties

2008-02-02 Thread Michael Gerzabek
Ok, finally I found it: Months ago I was playing around with the Label component. I found [1] and did a little rewrite to be able to put labels directly in my .tml files. Now 3 months later restarting the project I forgot about that. So sorry for the noise! Michael [1] http://www.nabble.com

Re: T5: Custom components are not statefull

2008-02-04 Thread Michael Courcy
Sorry I meant AbstractField Michael Courcy a écrit : Does your enrollmentbenchmarkchart compenent extends AbstractTextField ? Alexander Lamb a écrit : Hello list, It looks like custom components are not statefull. Indeed, I have a loop which contains a graph I generate and a TextField

Re: T5: Custom components are not statefull

2008-02-04 Thread Michael Courcy
class="t-error-icon t-invisible" id="textfield_10:icon" src="assets/tapestry/field-error-marker.gif"> NO As you can see, my TextField gets incremented but not my enrollmentbenchmarkchart ! Should I file a bug for this? P.S. I tried to generate the ids but it did

Re: JumpStart 3.2 - for Tapestry 5.0.9

2008-02-05 Thread Michael Courcy
ul. Cheers, Geoff Callender -- Michael Courcy http://courcy.blogspot.com http://courcy-en.blogspot.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

T5: Returning JSON from an event method

2008-02-05 Thread Michael Lake
According to the docs (scroll down to the bottom) http://tapestry.formos.com/nightly/tapestry5/tapestry-core/guide/ajax.html I should be able to return a JSONObject from an event method, but it throws an exception telling me all the possible return types..none of them appear to be JSONObject

Re: JumpStart 3.2 - for Tapestry 5.0.9

2008-02-05 Thread Michael Courcy
e which, because it all helps to make this stuff more useful. Very very nice. There's a problem with absolute path for jboss.dir properties, you should use directly ${jboss.dir} under you build.xml and not prefix that with ${project.dir}. Regards -- Michael Courcy http://cou

Re: Improving Component Reference

2008-02-06 Thread Michael Lake
The docs look great! I've been helping people on IRC ( #tapestry @ freenode.net) and at least one user found it extremely helpful when I pointed out the integration test app located in the following folder(to see working examples): tapestry-core/src/test/java/org/apache/tapestry/integration/ap

Re: i18n in javascript

2008-02-12 Thread Michael Courcy
se key in javascript? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Michael Courcy http://courcy.blogspot.com http://courcy-en.blogspot.com - To unsubsc

T5: Multiple File Upload

2008-02-20 Thread Michael Lake
I'm working on a project where I need multiple files (40 - 50) to be uploaded from a single page. The "tapestry-upload" module is unsuitable because the "t:upload" component only allows you to select one file at a time. Selecting 50 files from the "browse for file" dialog one at a time would

Re: T5: Multiple File Upload

2008-02-21 Thread Michael Lake
list isn't behaving as expected? -Filip Michael Lake skrev: I'm working on a project where I need multiple files (40 - 50) to be uploaded from a single page. The "tapestry-upload" module is unsuitable because the "t:upload" component only allows you to selec

Re: Howard deserves praise

2008-02-25 Thread Michael Lake
Extending an existing form on the fly with AJAX? That's precisely what I need right now. Unfortunately I need to have my project done by the end of the month (luckily it's leap-year, right?) Patrick Moriarty wrote: Nice one, I'm looking forward to getting my hands on it! On 25/02/2008, How

T5: Client-side Execution before form submission

2008-02-26 Thread Michael Lake
I've got some javascript that I want to execute AFTER the client-side validation has passed but BEFORE the actual form submission. I've tested out adding my own Tapestry.Validator so that I could simply have a hidden form element that executes last(being placed before the tag), but I have

OutOfMemory problem with Tapestry 4.0.2

2008-02-26 Thread Mlynarski, Michael
stry 4.0.2 - Windows 2003 Has anyone of you had the described problem?? Any suggestions are very welcome, since I couldn't find any solution elsewhere. Kind regards, Michael Mlynarski - To unsubscribe, e-mail: [EMAIL PROTECT

Re: T5: Client-side Execution before form submission

2008-02-28 Thread Michael Lake
. By observe, I mean all the Protoype stuff: $(form).observe("form:prepareforsubmit", function() { ... }); On Tue, Feb 26, 2008 at 10:45 AM, Michael Lake <[EMAIL PROTECTED]> wrote: I've got some javascript that I want to execute AFTER the client-side validation has passed

RE: JumpStart 3.3.3 now available - fixes 3.3.1 bugs

2008-03-02 Thread Nguyen, Michael
se T5. Thanks Michael -Original Message- From: Geoff Callender [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 27, 2008 4:17 AM To: Tapestry users Subject: JumpStart 3.3.3 now available - fixes 3.3.1 bugs Hi all, JumpStart 3.3.3 is now available for T5.0.10. It fixes these bugs that

T5 acquire block from separate page [was: Re: Antwort: [T5] Dynamic Layouts]]

2008-03-03 Thread Michael Gerzabek
ad [1]. This was back in May 07. The result then was mainly what's written in the docs [2] about the delegate component. Is there a way to dynamically load a page/ component/ block today? Thanks! Michael [1] T5: Best practice for rendering a dynamic component http://www.nabble.com/T5%3A-Bes

Re: T5, newbie: Grid use w dynamic columns

2008-03-16 Thread Michael Kolmodin
th javassist you can create default one by injecting BeanModelSource and create it with it after that you can play with the model. or you can provide a list of columns to the grid to include/exclude -- ------ Michael Kolmodin

Re: Re : [T5] How to add JavaScript in a component used in a layout

2008-03-29 Thread Michael Lake
Are you sure that the page you're outputting has proper body> tags? I've been burned by forgetting my tags which I believe are needed for tapestry to add scripts, but tapestry doesn't give you any warning that the scripts haven't been added. I think I made a Jira for this a couple months a

Re: [T5] Tapestry evaluation + questions

2008-03-29 Thread Michael Lake
Andy, you should take a look at tapestry jumpstart by geoff callender: http://files.doublenegative.com.au/jumpstart/ I only wish there were a demo server of this somewhere because the webapp itself will show its template + class in the browser. -mike On Mar 29, 2008, at 5:44 AM, Andy Blow

Re: [T5] Tapestry evaluation + questions

2008-03-31 Thread Michael Gerzabek
the mental elasticity to surpass your innate denial of Tapestry and come up with concrete answers to concrete questions I would even like your posts more. Regards, Michael Rob Smeets schrieb: Hi Andy, Be wise and dig around the Internet to find answers to your questions and don't turn to

Re: T5, newbie: Component parameter passing problems

2008-04-01 Thread Michael Kolmodin
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- ------ Michael KolmodinFredsgatan 2 Phone: +46 920 269413

T5: AppPropertyEditBlocks and @Inject ASO

2008-04-03 Thread Michael Capper
ed? The Class and Template are in the same package as the rest of my app-pages, so i'd assume it ought to get the same Object. If it is intended, could you hint at a solution to my problem, anybody? Thanks for your time, Michael -- View this message in context: http://www.nabble.com/T5%

Re: T5: AppPropertyEditBlocks and @Inject ASO

2008-04-03 Thread Michael Capper
My Bad! I Used @Inject for an ASO instead of the usual @ApplicationState... no wonder it did nothing. Michael Capper wrote: > > Summary: I seem to get a different ASO injected in the > AppPropertyEditBlocks page than on the rest of my app. > -- View this message in co

RE: accessing requestglobals inside dispatcher and other data support classes

2008-04-04 Thread Nguyen, Michael
to the current request after successfully logging in. The key thing for me is that the remote IP address will be used for IP authentication. That information is not available through the Request object. Does this make any sense? Am I approaching this the wrong way? Thanks, Michael -O

RE: accessing requestglobals inside dispatcher and other data support classes

2008-04-04 Thread Nguyen, Michael
. Thanks again ! --Michael -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Josh Canfield Sent: Friday, April 04, 2008 12:55 PM To: Tapestry users Subject: Re: accessing requestglobals inside dispatcher and other data support classes Take another look at

Re: 答复: from T5.0.11 to T5.0.6

2008-04-08 Thread Michael Gerzabek
this can be found in the online documentation in the section project layout [3]. 4. restart jetty now everything should be fine. Regards, Michael [1] http://tapestry.apache.org/tapestry5/release-notes.html [2] http://tapestry.formos.com/nightly/tapestry5/tapestry-core/upgrade.ht

Re: T5.0.11 beanEditForm

2008-04-08 Thread Michael Gerzabek
Celebrity( Celebrity celebrity ) { this.celebrity = celebrity; } } Regards, Michael Gdzelishvili schrieb: Can anyone help? On Mon, Apr 7, 2008 at 1:09 PM, Natia Gdzelishvili <[EMAIL PROTECTED]> wrote: I am using beanedit form, i have a simple code AddCelebrity.tml AddC

T5 property file for enum

2008-04-10 Thread Michael Gerzabek
um is used on a Page? What are your best practices? Regards, Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: T5 property file for enum

2008-04-10 Thread Michael Gerzabek
sure, how could I forget. Thanks! nille hammer schrieb: Hello Michael, there is an application wide properties file which is accessable by every page and component within your application. It is located in WEB-INF/.properties. depends on the filter name you have chosen for the tapestry

T5 : Expanding Messages Catalog for localization from arbitrary source

2008-04-10 Thread Michael Capper
Summary: How do I include additional localization-key/values-pairs in my global messages-catalog, originating from some app_.properties or from a database? Hi, I'd like to extend the Hash-Table containing the message-keys and message-values used in my app. The app_en.properties provides the basic

Re: T5 property file for enum

2008-04-10 Thread Michael Gerzabek
pages and components can override the values defined in this message catalog." Robert On Apr 10, 2008, at 4/104:10 AM , Michael Gerzabek wrote: Hi, I love the new enum support for automagic selects. Thanks for that Howard! I have shifted many constants to enums. The arising question is

T5 Apache httpd + T5

2008-04-11 Thread Michael Gerzabek
op.com/src/main/webapp/contact' for 'file:/C:/Dokumente%20und%20Einstellungen/indi/workspace/michaelgerzabek.shop.com/src/main/webapp/contact' What does this mean? Where is the difference? Has anyone had some experiences with httpd's mod_proxy

Re: T5 Apache httpd + T5

2008-04-11 Thread Michael Gerzabek
within eclipse 3.3, so the only logs I see are in the Console window. This is where I pasted the [WARN]ing. Is there a way to configure access logging like tomcat has for Jetty? Thanks, Michael - To unsubscribe, e-mail: [EMAIL

Re: T5 Apache httpd + T5

2008-04-11 Thread Michael Gerzabek
uot; "$0" [L] RewriteRule "^(.*)\.css" "$0" [L] RewriteRule "^(.*)\.png" "$0" [L] # All T5 apps have no .html, so we serve those from the # servlet container # ..... Rewrit

  1   2   3   4   5   6   7   8   9   >