Tapestry 5.2.5 Select component's multiple property

2011-04-14 Thread TG
I have the following codes in my form - ... (truncated for simplicity) ... * select more than once for multiple roles UserRole is Enum type - public enum UserRole { ROLE_

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-15 Thread TG
Hey Josh, Thanks for your reply. But when I use MultipleSelect, I got this error - An unexpected application exception has occurred. org.apache.tapestry5.ioc.internal.OperationException Unable to resolve 'MultipleSelect' to a component class name. availableValues Component types: ActionLink Ad

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-15 Thread TG
I do not use maven2. But I downloaded chenillekit-tapestry-1.1.0.jar manually, installed, run again and I got a new error during bootup - Caused by: java.lang.ClassNotFoundException: org.apache.tapestry5.internal.services.RequestPathOptimizer Seems like RequestPathOptimizer is not part of Tapestr

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-15 Thread TG
Ok that helps. Installed 1.3.2 but how do I use it in the .tml file? What is the namespace I need to import? I asked as I still have the same not found error i.e. Caused by: org.apache.tapestry5.ioc.internal.util.TapestryException: Unable to resolve 'MultipleSelect' to a component class name. [at

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-15 Thread TG
You are talking to a person who is new to tapestry :) So I need exact example. So my question is what should the namespace be like following? http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"; ??? I code like this and it does not work -

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-15 Thread TG
I change . to / in t:type i.e. * select more than once for multiple roles and I got another error - Caused by: org.apache.tapestry5.ioc.util.UnknownValueException: Could not find a coerci

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-15 Thread TG
I changed as suggested but can't move beyond compilation errors - GenericMultipleSelectModel is not in 1.3.2 anymore and what exactly are selectables, YourObject.class, labelPropertyName, valuePropertyName? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Se

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-16 Thread TG
Hi Taha, Could you send me all the codes? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Select-component-s-multiple-property-tp4304338p4307637.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-17 Thread TG
Is this http://wiki.apache.org/tapestry/Tapestry5MultipleSelectOnObjects the right codes to follow? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Select-component-s-multiple-property-tp4304338p4309784.html Sent from the Tapestry - User mailing list

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-18 Thread TG
ANymore kind soul out there that can help? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Select-component-s-multiple-property-tp4304338p4311399.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-18 Thread TG
Your sample codes works, thanks for that! :) Now, how do I make use of this, as my codes use Enum type? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Select-component-s-multiple-property-tp4304338p4312003.html Sent from the Tapestry - User mailing list arc

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-19 Thread TG
Can I replace MyObject with the Enum type e.g. UserRole? Will it work? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Select-component-s-multiple-property-tp4304338p4313085.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-19 Thread TG
For the sake of anyone else that might find this useful, this is how I addressed it - UserRole[] roles = UserRole.values(); for(int i = 0; i < roles.length; ++i){ myList.add(roles[i]); } and it works. Let m

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-19 Thread TG
I just realized that I have one more question, hope you do not mind. If let's say the user's select A, B and D, when the multipleselect component is rendered, how do I pre-select A, B and D correspondingly? What do I need to do (without changing the HTML myself for instance, which defeats the purp

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-19 Thread TG
It does not. I selected two items, go back to it, it remember. But if I saved it into the database, leave the page (goto some other functionalities for instance), come back again to the page with the multiple select, they are obviously not selected. Question is, how do I "make/set" the two items to

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-20 Thread TG
Anyone has any idea how to troubleshoot this multiselect component? Any tips on how to preselect the item in the list will be nice. Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Select-component-s-multiple-property-tp4304338p4329062.html Sent from

Re: Tapestry 5.2.5 Select component's multiple property

2011-04-20 Thread TG
One thing I noticed is, in my form I used the following - ${user.id} * select more than once for multiple roles Is the ab

Hyperlink not becoming hyperlink

2011-05-17 Thread TG
Hi, This is a newbie question so please bear with me :) I used beanedit to display HTML. So far I like it, but a column that contains hyperlink, the values does not "become" a hyperlink that I can click to launch an external site. How do I make the values becoming a clickable hyperlink in Tapestr

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread TG
Thanks for the prompt response. Actually I meant url as part of tapestry grid component. So I tried this - http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"; xmlns:p="tapestry:parameter"> ... ... ${url.endpoint} Link

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread TG
Richard, I wish it is that simple :) No, it does not work. Thanks anyway for the tips. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Hyperlink-not-becoming-hyperlink-tp4403607p4403780.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Hyperlink not becoming hyperlink

2011-05-17 Thread TG
Yup, it works. Thanks so much for all responses! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Hyperlink-not-becoming-hyperlink-tp4403607p4404798.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Delete confirmation with beaneditform

2011-07-25 Thread TG
I use beaneditform to generate my CRUD UI and web tiers automagically. I would like to have Delete action prompt me to confirm or cancel the action, no customization required, plain confirmation box. I saw some threads in this forum, it does not seem to have any one link annotation or codes that ca

Delete confirmation with beaneditform

2011-07-26 Thread TG
Sorry I meant with Grid component not beaneditform, do you know what is the simplest way to provide confirmation dialog? Confirm or Cancel? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Delete-confirmation-with-beaneditform-tp4634451p4634451.html Sent from the Ta

Re: Delete confirmation with beaneditform

2011-07-26 Thread TG
So how do I make use of these two files (.js and .java)? Delete ? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Delete-confirmation-with-beaneditform-tp4634451p4635174.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Creating unique URLs

2011-07-27 Thread TG
Come on guys, please help a fellow newbie tapestry here :) Taha provided me with those two links, one is confirm.js another is Confirm.java. How do I incorporate that in my Grid action hyperlink? TIA -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Forum-tp2404216p

Re: Creating unique URLs

2011-07-27 Thread TG
Taha, it works! Thanks so much. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Forum-tp2404216p4640804.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-m

Zebra Grid in Tapestry 5.2.6

2011-08-08 Thread TG
What is the simplest way to do this without writing any codes but maybe just css3? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Zebra-Grid-in-Tapestry-5-2-6-tp4680461p4680461.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: Zebra Grid in Tapestry 5.2.6

2011-08-09 Thread TG
Dmitry, your solution works like a charm :) ! I think it is the simplest that works with Tapestry grid I have seen so far. Thanks a lot! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Zebra-Grid-in-Tapestry-5-2-6-tp4680461p4681963.html Sent from the Tapestry - User mailin

Null LifeCycleState

2011-08-16 Thread TG
Any one know how to resolve this issue? location classpath:org/apache/tapestry5/corelib/pages/PropertyDisplayBlocks.tml, line 8 javax.jdo.JDOFatalInternalException Null LifeCycleState Hide uninteresting stack frames Stack trace org.datanucleus.state.JDOStateManagerImpl.replacingStateManager(

t:type="grid" "Excerpt" column

2011-08-17 Thread TG
I am trying to display a table using grid and one of the column are the details of a story, but in the start page, I would like an excerpt of that column. Meaning the text should be truncated to say first 100 characters. What is the best way to do this? With minimal codes in Tapestry 5? Thanks.

Re: t:type="grid" "Excerpt" column

2011-08-17 Thread TG
Could you clarify with a sample codes of what you mean by "add a String getStoryExcerpt() methord that returns the excerpt."? Also, do I implement it in the Page? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/t-type-grid-Excerpt-column-tp4708859p4710871.html S

Re: t:type="grid" "Excerpt" column

2011-08-18 Thread TG
All, thanks for your explanations, it works. I can see ... now :) Antalk, your Java example codes is the answer that fill the missing gap. I understand the use case of excerpt now. Thanks a lot and it is not late at all. -- View this message in context: http://tapestry.1045711.n5.nabble.com/t-ty

T5.3 Checklist Sample Codes

2011-08-18 Thread TG
I prefer not to use Palette component for multiple selections, I read about Checklist component for T5.3. Could any kind soul share the codes on how to use it? Currently I am using ChenilleKit's component and I am trying to move away from that... Thanks. -- View this message in context: http://t

Grid display after a new row insertion

2011-08-19 Thread TG
I noticed that if my grid is more than the maximum row that it can display, say 25 rows per page, it does not display the page that the row is inserted in. For example, say existing table consists of 50 rows (say 25 rows max per page) and I inserted the new one, the start page shows the rows at th

Re: Grid display after a new row insertion

2011-08-19 Thread TG
I have this - t:type="grid" source="items" t:model="beanModel" and public BeanModel getBeanModel() { BeanModel model = beanModelSource.createDisplayModel(Item.class, messages); PropertyModel nameColumn = model.getById("lastU

Re: Grid display after a new row insertion

2011-08-20 Thread TG
Anyone? Sorting of grid column programmatically should not be that difficult correct? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Grid-display-after-a-new-row-insertion-tp4715298p4718683.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Add extra buttons in beaneditform

2011-08-22 Thread TG
It seems like with http://tapestry.1045711.n5.nabble.com/Add-extra-buttons-in-beaneditform-tp4723870p4723870.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapest

T5.3 Checklist java.lang.reflect.GenericSignatureFormatError

2011-08-22 Thread TG
Yup, thanks for the sample source at the given URL. I managed to remove Chenillekit multiselect component and integrated T 5.3 Checklist. However, with existing data (which were saved by Chenilekit component), it gave the following error. Any idea? Could it be a T 5.3 bug? org.apache.tapestry5.ioc

Re: T5.3 Checklist java.lang.reflect.GenericSignatureFormatError

2011-08-23 Thread TG
Downloaded from somewhere on Sunday, August 14, 2011 12:51 PM. Is the latest available at https://repository.apache.org/content/repositories/snapshots/org/apache/tapestry/tapestry-core/5.3-SNAPSHOT/ ? -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-3-Checklist-Sample-Co

Re: T5.3 Checklist java.lang.reflect.GenericSignatureFormatError

2011-08-23 Thread TG
readAppEngineWebXml INFO: Successfully processed /Users/tg/Workspaces/Eclipse 3.7 Java/Project/war/WEB-INF/appengine-web.xml Aug 23, 2011 7:27:48 PM com.google.apphosting.utils.config.AbstractConfigXmlReader readConfigXml INFO: Successfully processed /Users/tg/Workspaces/Eclipse 3.7 Java/Project/war

Re: T5.3 Checklist java.lang.reflect.GenericSignatureFormatError

2011-08-23 Thread TG
Ok I missed one jar, I fixed that. Now I got the following - Exception constructing service 'PageSource': Error invoking service builder method org.apache.tapestry5.internal.services.InternalModule.buildPageSource(PageSourceImpl, InvalidationEventHub, InvalidationEventHub) (at InternalModule.j

Tapestry 5.3: IOCSymbols.THREAD_POOL_ENABLED does not work!?

2011-08-23 Thread TG
My AppModule's method - public static void contributeApplicationDefaults(MappedConfiguration configuration) { configuration.add("tapestry.thread-pool-enabled", false); ... I also tried - public static void contributeApplicationDefaults(Mapp

Re: Tapestry 5.3: IOCSymbols.THREAD_POOL_ENABLED does not work!?

2011-08-23 Thread TG
The AppModule is recognized and loaded Howard. I put a sysout inpublic static void bind(ServiceBinder binder), thus confirming that. Anything else is different in 5.3? I see that the flags used to be Strings, not a boolean, I was just wondering ... -- View this message in context: http:

Re: Tapestry 5.3: IOCSymbols.THREAD_POOL_ENABLED does not work!?

2011-08-24 Thread TG
Could any other kind soul advice if this flag works at all in the latest alpha? If I revert to some other version before alpha 13 of 5.3, it works but it has some other issue like - Exception constructing service 'PageSource': Error invoking service builder method org.apache.tapestry5.internal.ser

Re: Tapestry 5.3: IOCSymbols.THREAD_POOL_ENABLED does not work!?

2011-08-24 Thread TG
Whole app is not working anymore. Using alpha 12, it works. Not sure if this helps. I remember the "backward compatibility" with GAEJ is one of the feature of Tapestry, I am hoping it is still true. Thanks! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-3-IOCS

T 5.3 Alert and AlertManager Tutorials

2011-08-24 Thread TG
I would like to use the transient alert in the new T 5.3, but I could not find any sample codes anywhere. Does it exists? Could someone kindly send me a sample or two? :) TIA -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-5-3-Alert-and-AlertManager-Tutorials-tp4732469p4

Re: T 5.3 Alert and AlertManager Tutorials

2011-08-24 Thread TG
AlertManager is located in what jar? I am not using Maven. And I can't import it from Eclipse ... -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-5-3-Alert-and-AlertManager-Tutorials-tp4732469p4732546.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: T 5.3 Alert and AlertManager Tutorials

2011-08-24 Thread TG
I got the following in my WEB-INF/lib - plastic-5.3.jar tapestry-annotations-5.3.0.jar tapestry-beanvalidator-5.3.0.jar tapestry-core-5.3.0.jar tapestry-func-5.3.0.jar tapestry-hibernate-5.3.0.jar tapestry-hibernate-core-5.3.0.jar tapestry-ioc-5.3.jar tapestry-json-5.3.0.jar tapestry-test-5.3.0.ja

Re: T 5.3 Alert and AlertManager Tutorials

2011-08-24 Thread TG
I am stuck with issue https://issues.apache.org/jira/browse/TAP5-1616. What a bummer, seems like AlertManager depends on threading too? :( -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-5-3-Alert-and-AlertManager-Tutorials-tp4732469p4732600.html Sent from the Tapestry -

Re: T 5.3 Alert and AlertManager Tutorials

2011-08-24 Thread TG
I put the method in AppModule but it does not seem to be invoked, anything else I need to do? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-5-3-Alert-and-AlertManager-Tutorials-tp4732469p4732706.html Sent from the Tapestry - User mailing list archive at Nabble.

Re: T 5.3 Alert and AlertManager Tutorials

2011-08-24 Thread TG
Yup GAEJ failed, but the method you wrote was not invoked. It might works if it does? :o -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-5-3-Alert-and-AlertManager-Tutorials-tp4732469p4732903.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: T 5.3 Alert and AlertManager Tutorials

2011-08-25 Thread TG
Hope the following helps - In web.xml: tapestry.app-package tapp At least the following methods are called in AppModule - public static void bind(ServiceBinder binder) { public static void contributeApplicationDefaults(MappedConfiguration configuration) { But

Re: T 5.3 Alert and AlertManager Tutorials

2011-08-25 Thread TG
Here you go - org.apache.tapestry5.TapestryFilter app /* Also I put a system out in the method like this - @Contribute(ServiceOverride.class) public static void setupApplicationServiceOverrides(MappedConfiguration configuration) { System.out

Re: T 5.3 Alert and AlertManager Tutorials

2011-08-25 Thread TG
You are right, no difference still does not invoke the service override method. Anything else that I can try? -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-5-3-Alert-and-AlertManager-Tutorials-tp4732469p4736001.html Sent from the Tapestry - User mailing list archive at

Tapestry5-jquery error

2011-09-11 Thread TG
Ok guys, I tried to look at the forum and Googled, I am still stuck. So I am trying my luck to see if anyone could help me to figure out this error - An unexpected application exception has occurred. org.apache.tapestry5.ioc.internal.OperationException Unable to resolve 'jquery/autocomplete' to a

Re: Tapestry5-jquery error

2011-09-11 Thread TG
I grabbed the latest build for T5.3 and now I have this error - Sep 12, 2011 12:42:46 AM com.google.apphosting.utils.jetty.JettyLogger warn WARNING: failed app: java.lang.IllegalArgumentException: Contribution org.got5.tapestry5.jquery.services.JQueryModule.provideWorkers(OrderedConfiguration) (at

Gradle build failed

2011-09-17 Thread TG
I do not use Maven and I am trying to build Tapestry 5.3. I got error like - TGs-MacBook-Pro:apache-tapestry-5.3.0-sources ag$ gradle FAILURE: Build failed with an exception. * Where: Build file '/Users/tg/Downloads/apache-tapestry-5.3.0-sources/build.gradle' line: 15 * What wen

Re: Tapestry 5.3: IOCSymbols.THREAD_POOL_ENABLED does not work!?

2011-09-17 Thread TG
Is this issue fixed? Anyway I can download the binaries? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-3-IOCSymbols-THREAD-POOL-ENABLED-does-not-work-tp4728718p4814755.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: Tapestry 5.3: IOCSymbols.THREAD_POOL_ENABLED does not work!?

2011-09-18 Thread TG
Thanks Howard, beta 9 seems to fix the issue :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-3-IOCSymbols-THREAD-POOL-ENABLED-does-not-work-tp4728718p4817670.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Textarea with character count?

2011-09-26 Thread TG
Hi, I wonder in Tapestry world, is there such a component that while user types, it will counts how many characters have the user typed. Alternatively, I would like to know if there is a way to restrict the textarea to a fixed size, say 500 characters. If exceeded, no more text will be allowed. A

Re: Textarea with character count?

2011-09-30 Thread TG
Thanks guy! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Textarea-with-character-count-tp4843530p4858058.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail:

User registration component with captcha for tapestry 5.3?

2011-09-30 Thread TG
Hi, If I sounded like to greedy, please let me know :) Do you know if there is any tapestry component that allow user registration feature, like including email notificatiion, captcha etc as a tapestry components/mixins? If not, what is the workaround/best alternative(s)? Thanks! -- View this m

PageCatalog and ServiceStatus

2011-10-07 Thread TG
I read somewhere that in Tapestry 5.3, I can hit /pagecatalog and /servicestatus to look at the memory usage etc. But when I hit the URL, it said not found. How do I configure to get these two functionalities? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/PageCa

Re: PageCatalog and ServiceStatus

2011-10-09 Thread TG
It is beta 9. Which jar file(s) is it in? I do not use Maven. Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/PageCatalog-and-ServiceStatus-tp4880131p4885211.html Sent from the Tapestry - User mailing list archive at Nabble.com.

T5.3 beta 18: java.net.URISyntaxException: Illegal character in path at index 33

2011-10-09 Thread TG
'ApplicationDefaults': Failure reading bytecode for class app.services.AppModule: Illegal character in path at index 33: file:/Users/tg/Workspaces/Eclipse 3.7 Java/Light/war/WEB-INF/classes/app/services/AppModule.class at org.apache.tapestry5.ioc.internal.ContributionDefImpl.in

Unknown beaneditform save exception

2011-11-01 Thread TG
.tapestry5.corelib.components.Form.executeStoredActions(Form.java:664) ... 96 more Any idea if this is an existing issue with Tapestry 5.3 beta 18. Thanks! TG -- View this message in context: http://tapestry.1045711.n5.nabble.com/Unknown-beaneditform-save-exception-tp4956725p4956725.html Sent from the Tapestry - User ma

Re: Unknown beaneditform save exception

2011-11-03 Thread TG
I used rc2, it gave the same exception. What else I could do? :( -- View this message in context: http://tapestry.1045711.n5.nabble.com/Unknown-beaneditform-save-exception-tp4956725p4962763.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: Unknown beaneditform save exception

2011-11-04 Thread TG
Could the following codes cause the exception? public class UserSave { ... public ValueEncoder getEncoder() { return new EnumValueEncoder(null, UserRole.class); } If so, how do I need to change it to avoid the NPE? Thanks -- View this message in context: http://tapestry.10

Re: Unknown beaneditform save exception

2011-11-05 Thread TG
I added @Inject private TypeCoercer typeCoercer; and change the method to return new EnumValueEncoder(typeCoercer, UserRole.class); that seems to resolve the NPE issue. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Unknown-beaneditform-save-ex

Beaneditform with two submit buttons?

2011-11-05 Thread TG
Is it possible to have two submit buttons for this component? I would like to implement "save" (the page stays) and "submit" (done, and go to the welcome page). Thanks. TG -- View this message in context: http://tapestry.1045711.n5.nabble.com/Beaneditform-wit

Re: Beaneditform with two submit buttons?

2011-11-06 Thread TG
Could you provide sample codes for that? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Beaneditform-with-two-submit-buttons-tp4967644p4968843.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Beaneditform with two submit buttons?

2011-11-06 Thread TG
I changed my codes to something like this - ${service.id} and I got the following error - The

Re: Beaneditform with two submit buttons?

2011-11-06 Thread TG
I changed it and also changed but I got Parameter(s) 'object' are required for org.apache.tapestry5.corelib.components.BeanEditForm, but have not been bound. What do I missed? Can you look at my codes again? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Beane

Re: Beaneditform with two submit buttons?

2011-11-07 Thread TG
Any kind souls out here that can send me samples codes with beaneditor with two submit buttons that work? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Beaneditform-with-two-submit-buttons-tp4967644p4972166.html Sent from the Tapestry - User mailing list archive

RE: Beaneditform with two submit buttons?

2011-11-07 Thread TG
Wulf, would you mind share the codes? Thanks ! :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/Beaneditform-with-two-submit-buttons-tp4967644p4972522.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

RE: Beaneditform with two submit buttons?

2011-11-09 Thread TG
When you said Done, do you mean you have provided the source somewhere else? Would you mind sharing the URL? Wiki or otherwise? Thanks! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Beaneditform-with-two-submit-buttons-tp4967644p4978709.html Sent from the Tapestry - User

fckeditor for Tapestry 5.3

2011-11-10 Thread TG
Do we have one? If so, any link to setup and download it? I don't use Maven just FYI. Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/fckeditor-for-Tapestry-5-3-tp4983201p4983201.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: fckeditor for Tapestry 5.3 RC2

2011-11-10 Thread TG
I got this error - Caused by: java.lang.NoSuchMethodError: org.apache.tapestry5.ioc.Registry.getService(Ljava/lang/Class;)Ljava/lang/Object; at com.orientimport.easyfck.util.LegacyT5ServiceHelper.getService(LegacyT5ServiceHelper.java:40) at com.orientimport.easyfck.connector.FckEd

Re: fckeditor for Tapestry 5.3

2011-11-11 Thread TG
Is it on Google App Engine for Java (GAEJ)? Mine is on GAEJ and it does not work. -- View this message in context: http://tapestry.1045711.n5.nabble.com/fckeditor-for-Tapestry-5-3-tp4983201p4984586.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: fckeditor for Tapestry 5.3

2011-11-13 Thread TG
I tried https://github.com/plannowtech/tapestry5-ckeditor and I got HTTP ERROR 500 Problem accessing /editor/CKEditorDemo. Reason: PermGen space Caused by: java.lang.OutOfMemoryError: PermGen space Powered by Jetty:// Is there any settings I can change to reserve more memory to the app?

Re: fckeditor for Tapestry 5.3

2011-11-13 Thread TG
Ok I managed to fix the permgen issue. But now I got this error - An unexpected application exception has occurred. org.apache.tapestry5.runtime.ComponentEventException A component event handler method returned the value Block[Body of EditorSave:mainzone, at classpath:app/pages/EditorSave.tml, li

Re: fckeditor for Tapestry 5.3

2011-11-15 Thread TG
It is a form post though and it is as the following - http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"; xmlns:sec="http://www.springframework.org/security/tags";> ${serviceObject.id}

Re: fckeditor for Tapestry 5.3

2011-11-15 Thread TG
Kept only - Same issue. Ya, I like the name ;p -- View this message in context: http://tapestry.1045711.n5.nabble.com/fckeditor-for-Tapestry-5-3-tp4983201p4994467.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: fckeditor for Tapestry 5.3

2011-11-15 Thread TG
Have anyone else see the problem of my post? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/fckeditor-for-Tapestry-5-3-tp4983201p4996572.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: fckeditor for Tapestry 5.3

2011-11-17 Thread TG
Anyone? At least share with me what other rich text editor I can try out that works on T5.3? Thanks -- View this message in context: http://tapestry.1045711.n5.nabble.com/fckeditor-for-Tapestry-5-3-tp4983201p5002984.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: fckeditor for Tapestry 5.3

2011-11-19 Thread TG
I found this https://github.com/hlship/tapx/. I will let everyone know if it works for me on GAEJ. -- View this message in context: http://tapestry.1045711.n5.nabble.com/fckeditor-for-Tapestry-5-3-tp4983201p5007540.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

T5.3 RichtextEditor

2011-11-19 Thread TG
I found this https://github.com/hlship/tapx/. I am trying to get it to work on GAEJ. But I got this error - SEVERE: Processing of request failed with uncaught exception: Unable to resolve 'tapx/richtexteditor' to a component class name. I got T5.3RC2. Any idea? How do I set it up besides copying

Re: T5.3 RichtextEditor

2011-11-20 Thread TG
Found this "Improved documentation is coming (we're in the middle of a transition from Maven to Gradle as the build and packaging tool)." on the TAPX site. I guess I need to wait for the documentation? -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-3-RichtextEditor-tp5

Re: fckeditor for Tapestry 5.3

2011-11-20 Thread TG
After days of scratching my head and banging my head against the wall, with no help from the guru in this forum, I finally avoided the error by not using zone. I suspect this is a bug of T5.3. HTH -- View this message in context: http://tapestry.1045711.n5.nabble.com/fckeditor-for-Tapestry-5-3-t

Re: fckeditor for Tapestry 5.3

2011-11-21 Thread TG
Awesome, finally a reply ! ;p Hey, how do I fix "you were trying to return a Block without using AJAX (i.e. without setting the zone attribute in the Form component"? Sorry if it sounded too simple to you, but any link or resource would be great. -- View this message in context: http://tapes

java.lang.IllegalStateException: Sanity check - neither a stream response nor a redirect response was generated for this action request.

2012-11-11 Thread TG
I got a new exception "java.lang.IllegalStateException: Sanity check - neither a stream response nor a redirect response was generated for this action request." after I upgraded the tapestry to 5.3.6. I was using 5.3.4 (or maybe earlier) before without any issue. Our codes - ... @InjectPa

Re: java.lang.IllegalStateException: Sanity check - neither a stream response nor a redirect response was generated for this action request.

2012-11-11 Thread TG
Alex, great info. I can't downgrade, as we are testing Cloud endpoints, which is only available in 1.7.3. Any idea what is breaking Tapestry 5.3.6 in this case? Any workaround is acceptable too. Thanks! -- View this message in context: http://tapestry.1045711.n5.nabble.com/java-lang-IllegalSt

Disabling HMAC check

2012-11-21 Thread TG
Our app does not need this, we have our own timeout check. This check interfere with ours. How do we disable this without getting the warning on the screen? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Disabling-HMAC-check-tp5718156.html Sent from the Tapestry - User m

Re: Disabling HMAC check

2012-11-21 Thread TG
Error message is "The symbol 'tapestry.hmac-passphrase' has not been configured. This is used to configure hash-based message authentication of Tapestry data stored in forms, or in the URL. You application is less secure, and more vulnerable to denial-of-service attacks, when this symbol is not con

Re: Disabling HMAC check

2012-11-21 Thread TG
Error message is "The symbol 'tapestry.hmac-passphrase' has not been configured. This is used to configure hash-based message authentication of Tapestry data stored in forms, or in the URL. You application is less secure, and more vulnerable to denial-of-service attacks, when this symbol is not con

Re: Disabling HMAC check

2012-11-21 Thread TG
Error message is "The symbol 'tapestry.hmac-passphrase' has not been configured. This is used to configure hash-based message authentication of Tapestry data stored in forms, or in the URL. You application is less secure, and more vulnerable to denial-of-service attacks, when this symbol is not con

Re: Disabling HMAC check

2012-11-21 Thread TG
Error message is "The symbol 'tapestry.hmac-passphrase' has not been configured. This is used to configure hash-based message authentication of Tapestry data stored in forms, or in the URL. You application is less secure, and more vulnerable to denial-of-service attacks, when this symbol is not con

Re: Disabling HMAC check

2012-11-21 Thread TG
Yes, it expires the session. How do I disable the warning? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Disabling-HMAC-check-tp5718156p5718170.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Disabling HMAC check

2012-11-21 Thread TG
Non-random string? How do I do that? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Disabling-HMAC-check-tp5718156p5718173.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To uns

Re: Disabling HMAC check

2012-11-23 Thread TG
Works like a charm. Thanks guy! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Disabling-HMAC-check-tp5718156p5718212.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscr

  1   2   >