Re: T5.2.6 AJAX Select with 3 select lists

2013-01-24 Thread resign
looks like this: . Following should work: user changes value of FIRST_SELECT - SECOND_SELECT "reloads" with new values BUT IT DIDN'T! :-( greetings, resign Thiago H de Paula Figueiredo wrote > On Thu, 24 Jan 2013 10:21:33 -0200, resign < > sergejberg@ >

Re: T5.2.6 AJAX Select with 3 select lists

2013-01-24 Thread resign
Hi Geoff, how i wrote, i got an error: > "The ... component must be enclosed by a Form component." Ideas? Thanks, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-AJAX-Select-with-3-select-lists-tp5719413p5719481.html Sent from the Ta

T5.2.6 AJAX Select with 3 select lists

2013-01-22 Thread resign
e some car brand loaded. * user selects "CAR-BRAND" - in the list "CAR-MODEL" are some models loaded. Like this one: http://jumpstart.doublenegative.com.au/jumpstart/examples/ajax/select1 but with 3 select lists. Is it possible? I use Tapestry 5.2.6 with Tapestry5-jQuery Thanks,

T5.2.6: Catch page call in AppModule

2012-11-06 Thread resign
Hi, is it possible to catch every page call in ONE central point, like AppModule ? The background is - i have to insert "Please wait..." - message in an */existing /* project. Any ideas? Thanks, resign PS: for AJAX things i use progressive display works fine. -- View this

Re: Grid, is there any way dynamically defined columns?

2012-09-18 Thread resign
Hi, a lot of time gone froml this post was sent. Have found any solution for your problem? Would you tell it? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Grid-is-there-any-way-dynamically-defined-columns-tp4866376p5716374.html Sent from the Tapestry - User mailing

T.5.2.6 Grid with paginator and Checkbox

2012-08-27 Thread resign
nd the grid an event ("SWITCH_PAGE"...), so i can handle it ? Greetings, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-5-2-6-Grid-with-paginator-and-Checkbox-tp5715834.html Sent from the Tapestry - User mail

T5.2.6 AjaxFormLoop and Select(s)

2012-08-14 Thread resign
ne row in AjaxFormLoop Is it possible? greeting, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-AjaxFormLoop-and-Select-s-tp5715380.html Sent from the Tapestry - User mailing list archive at Nabble.com.

T.5.2.6 recordError on FormAjaxLoop

2012-06-20 Thread resign
", on error case i call Form.recordError(String). How can i make it on more elegance way? greetings resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-5-2-6-recordError-on-FormAjaxLoop-tp5713991.html Sent from the Tapestry - User mailing list archive at

Re: T 5.2.6 EventLink and confirm box

2012-05-03 Thread resign
hi, sorry was not at home :-) I made it an other way. I use jQuery at all, so i creeated a dialog with two buttons yes/no and let them fire events CANCEL oder REMOVE. easy :-) Thanks for help resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-5-2-6-EventLink

T 5.2.6 EventLink and confirm box

2012-04-19 Thread resign
hi, i have a problem i have an EventLink to delete user, on this link a created an "onClick" listener which ask the user if he want to delete something. but Event will fired in each case. example: . delete . How can i do this? thanks, resign -- View this message

Re: T5.2.6 mixins example

2012-04-12 Thread resign
YOU ARE MY HERO !!! -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-mixins-example-tp5635318p5635438.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

Re: T5.2.6 mixins example

2012-04-12 Thread resign
exaclty my idea :-) doesn't work too -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-mixins-example-tp5635318p5635403.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To u

Re: T5.2.6 mixins example

2012-04-12 Thread resign
following: my textField is in table cell. If i view into generated html, i can see that the - element is "disabled"... and generated HTML looks like .. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-mixins-example-tp5635318p5635389.html Sen

Re: T5.2.6 mixins example

2012-04-12 Thread resign
Hi, your' right... but it still doesn't work -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-mixins-example-tp5635318p5635342.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

T5.2.6 mixins example

2012-04-12 Thread resign
way? How can i get it running? greeting, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-mixins-example-tp5635318p5635318.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Multiple Submits and Zone

2012-04-10 Thread resign
have got no code now. But here the idea i have two submit buttons, on every textfield i'll check if the user pressed the enter key. If yes - raise "click" on second submit-button. So i use javascript and not Tapestry functionality. It sufficient for my needs. resign -- View

Re: Multiple Submits and Zone

2012-04-09 Thread resign
Hi, methods "void onSelectedFrom..." seems not to be called. Tested with Log-Output and Debugging. I resolved on another way (not really clean, but it works) Thanks, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/Multiple-Submits-and-Zone-tp5619561p56

Re: Multiple Submits and Zone

2012-04-05 Thread resign
Hi, T5.2.6 TML: ... FIRST Submit: SECOND Submit: ${message} ... And Java File ... void onSelectedFromFIRST(){ isFIRST = true; } void onSelectedFromSECOND(){ isFIRST = false; } Object onSuccess(){ if (isFIRST){ mes

Multiple Submits and Zone

2012-04-04 Thread resign
Hi, i saw this example: http://jumpstart.doublenegative.com.au/jumpstart/examples/input/multiplesubmits1 it works fine for me. BUT, if i add a zone to my form and try to work with ajax, it doesn't work at all :-( Any ideas? Thanks, resign -- View this message in context: http://tap

@SessionState and Translator

2012-03-29 Thread resign
hi, is it possible to add an translator to textfield depends on logged user? For example i want to translate Date object depends on logged user. greetings, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/SessionState-and-Translator-tp5605827p5605827.html Sent from

Re: T5.2.6 jJquery Plugin 2.6.0 Form validation

2012-03-27 Thread resign
So i found the solution... maybe primitive but works for me First of all i packed my form in a Zone and add "clientValidation="false" " to form ... Then, in Java Class, in method onValidateFromForm i validate my form "manually" (userId!=null and so...) In case of error,

RE: T5.2.6 jJquery Plugin 2.6.0 Form validation

2012-03-26 Thread resign
rivate String helloString; void onSuccess() { ; } } In my browser IE8 :-( it doesn't work at all. I tested now on FF - seems to work So it's my problem. Thanks, resign I go and shoot me :-) -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-jJ

RE: T5.2.6 jJquery Plugin 2.6.0 Form validation

2012-03-26 Thread resign
i think yes. How can i use ONLY the jQuery plugin? Thanks, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-jJquery-Plugin-2-6-0-Form-validation-tp5596991p5597029.html Sent from the Tapestry - User mailing lis

T5.2.6 jJquery Plugin 2.6.0 Form validation

2012-03-26 Thread resign
.) Can it be a compatibility problem? greeting, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-jJquery-Plugin-2-6-0-Form-validation-tp5596991p5596991.html Sent from the Tapestry - User mailing list archiv

RE: T5.2.6 jquery2.6.0 jquery dialog close from included component

2012-03-14 Thread resign
pieter...you are my hero -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-jquery2-6-0-jquery-dialog-close-from-included-component-tp5564657p5564817.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

RE: T5.2.6 jquery2.6.0 jquery dialog close from included component

2012-03-14 Thread resign
hi Manu, in my component i have a form. And onFail the dialog should stay on top, onSuccess the dialog should disappear. Thanks, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-jquery2-6-0-jquery-dialog-close-from-included-component-tp5564657p5564685.html

T5.2.6 jquery2.6.0 jquery dialog close from included component

2012-03-14 Thread resign
Hi, is it possible to close the jquery dialog from included coponent? ... ... Thanks, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-jquery2-6-0-jquery-dialog-close-from-included-component-tp5564657p5564657

Re: Environment Environmental Service T5.2.6

2012-03-06 Thread resign
ent page. resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/Environment-Environmental-Service-T5-2-6-tp5540838p5543324.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe

Re: Environment Environmental Service T5.2.6

2012-03-06 Thread resign
Component.tml ... ${myParameterValue} Have i use zone? thanks and greetings, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/Environment-Environmental-Service-T5-2-6-tp5540838p5540886.html Sent from the Tapestry - User mailing list archive

Environment Environmental Service T5.2.6

2012-03-06 Thread resign
nt. Available types are (none). Any ideas? greetings, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/Environment-Environmental-Service-T5-2-6-tp5540838p5540838.html Sent from the Tapestry - User mailing list a

Re: tapestry5-jquery-2.6.0 change theme

2012-03-05 Thread resign
Thanks. -- public static void contributeApplicationDefaults(final MappedConfiguration configuration) { configuration.add(JQuerySymbolConstants.JQUERY_UI_DEFAULT_THEME, "context:themes/smoothy/css/custom-theme/jquery-ui-1.8.18.custom.css"); } was the ri

Re: tapestry5-jquery-2.6.0 change theme

2012-03-05 Thread resign
ryDefaults(MappedConfiguration) (at JQueryModule.java:86)). ... How can i use the theme, i downloaded from jquery-ui.com ? greetings, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/tapestry5-jquery-2-6-0-change-theme-tp5527692p5537257.html Sent from the Tapestry - User ma

tapestry5-jquery-2.6.0 change theme

2012-03-01 Thread resign
Hi, i use tapestry5-jquery-2.6.0 with tapestry 5.2.6. Now i have to switch the default theme (ui-lightness) to smoothness. What i have to do? Thanks resign. PS: yes, i dd search, but unfortunately i can't find anything :-( -- View this message in context: http://tapestry.10457

Radio buttons

2012-02-16 Thread resign
hi, i have to implement followinmg design. Variable number of parameters should be shown as radio buttons with YES/NO values How can i realise this the simpliest way? Option_1 o o Option_2 o o Option_x o o If i try to made it and then submit the form i get the

Re: Type coercion and loop (in Form)

2012-02-06 Thread resign
great! Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Type-coercion-and-loop-in-Form-tp5459480p5460031.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-m

Type coercion and loop (in Form)

2012-02-05 Thread resign
ed that, i jast want to show a table. Thanks, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/Type-coercion-and-loop-in-Form-tp5459480p5459480.html Sent from the Tapestry - User mailing list a

Grid in a Zone in a Component

2012-02-02 Thread resign
hi all, i have following construction -main page ---component as a DIV -Zone ---grid now, if i want to select another page of grid, the complete page is reloaded. And my component is not visible. :-( i don't know how to describe. here an example (pseudo code): *Page* ... Search ..

Re: Use Translator

2012-01-25 Thread resign
hi, i want to say "THANKS" for help. Unfortunately it was not possible to get this thing to run, so i made an work around. It now works, the problem was - no communication between developers bye Live long and prosper! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Us

Re: Use Translator

2012-01-23 Thread resign
thanks, i get an Exception org.apache.tapestry5.ioc.util.UnknownValueException: Could not find a coercion from type java.lang.String to type ...Email Do i need an own TypeCoercer ? greetings, resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/Use-Translator

Re: Use Translator

2012-01-23 Thread resign
Wow very quick answer :-) Snip of my AppModule public static void contributeTranslatorSource(MappedConfiguration configuration){ configuration.add(Email.class, new EmailOfContactTranslator()); } Snip of Translator -- public

Use Translator

2012-01-23 Thread resign
message) seems not to be called. By the way, is it possible to get informal parameters from Field in the method parseClient? greeting resign -- View this message in context: http://tapestry.1045711.n5.nabble.com/Use-Translator-tp5165694p5165694.html Sent from the Tapestry - User mailing list

Re: java.util.List in form

2012-01-19 Thread resign
done The key part is the "onAfterSubmit". ... ${currentPhone1} ... and Java part: . void onAfterSubmit(){ if (phoneResultList == null){ phoneResultList = new ArrayList();

java.util.List in form

2012-01-19 Thread resign
Hello, i'm just a beginner and have a problem, maybe just a blackout :-) I have a java class "Person" with a list of phone numbers. How can i edit this person with tapestry? example : --- public class Person{ Listphones; . } Thank for any idea resig