Dear all, I have a strange scenario like below :-
I have a component A { @Parameter(required = true) private boolean isXYZ; } On debug, i see two parameters associated to the above field -----isXYZ and isXYZ_FieldConduit. Somehow, the values of both the fields are loaded differently and are not in sync. I want the value of isXYZ_FieldConduit. to be same as the isXYZ ( which should be the default working scenario for the tapestry). Hence, when i used the above parameter to be passed to another component its always passed incorrectlly since the field conduit value is incorrect. Now, I look for a solution where in, I can hijack and change the value of "password_FieldConduit". I see that there exists a class called Transform Field/ClassTransformation which has something to do with it, but I am not sure about its usage or is it really possible to do it. May be its something which is just against the tapestry way. Not sure, any suggestion will be helpful. Regards!! Akshay