RE: Migrated project from 5.4.3 to 5.8.00, still searching for older jars

2022-03-29 Thread Ankit Jain
import org.apache.tapestry5.services.TransformMethod; import org.apache.tapestry5.services.TransformMethodSignature; Any help would be appreciated in terms of mapping these objects to v5.8 objects. Regards, Ankit From: Ankit Jain Sent: 29 March 2022 18:29 To: users@tapestry.apache.org

5.3.8 - Track form changes to mark dirty flag

2019-03-18 Thread Ankit Jain
Hello, everyone! I am using Tapestry v5.3.8. I am writing a functionality to track changes done within the form and mark a dirty flag when we go to the next page. I did that using jQuery by serializing the form state. That is working fine but if my form submission (server side) changes the valu

RE: Remote debugging a Tapestry application

2017-04-05 Thread Ankit Jain
The problem you are talking about is independent of development/production/remotedebugging. You can use sysout or logger to trace the values as watch will not be able to show you the real value of global objects in the page. Note: I am assuming that you are trying to see the value of the global

Prototype Constants replacement in v5.4`

2017-04-03 Thread Ankit Jain
Hi, We have been using the following constants in our program but they no longer work as we are removing Prototype. Can you please suggest the replacements of these constants in Tapestry v5.4. Tapestry.FORM_PREPARE_FOR_SUBMIT_EVENT Tapestry.ZONE_UPDATED_EVENT Tapestry.currentFocusField Tapestry.

RE: Unable to get custom attributes value in Mixin from Select control

2017-03-31 Thread Ankit Jain
since version 5.4 it is required to add the mixin prefix to its parameters: t:[mixin-name].[parameter-name]="[property-name]" So in your case: Maybe that is the problem you are having? Nathan Op 29/03/2017 om 11:42 schreef Ankit Jain: > Hi, > > I am unable to get custom at

Unable to get custom attributes value in Mixin from Select control

2017-03-29 Thread Ankit Jain
Hi, I am unable to get custom attributes (t:varid) value in Mixin (mixinDropDown) from Select Input control. In mixinDropDown, I have declared the varid as following: @Parameter(defaultPrefix = BindingConstants.LITERAL) private String varid; when I am accessing it in AfterRender, 'var