Re: Component class inheritance and parameter binding in tapestry 5.2.5

2011-07-07 Thread Jabbar
Thanks for that Josh. I've fixed the typo and are not using t:id. On 6 July 2011 21:06, Josh Canfield wrote: > You have a typo in the tml. Your parameter is "selectedBatchStatus" > and you are binding "selectedBatchedStatus" > >private RepairListStatus selectedBatchStatus; > > t:selectedBatc

Re: Component class inheritance and parameter binding in tapestry 5.2.5

2011-07-06 Thread Josh Canfield
You have a typo in the tml. Your parameter is "selectedBatchStatus" and you are binding "selectedBatchedStatus" >    private RepairListStatus selectedBatchStatus; > t:selectedBatchedStatus="selectedBatchStatus"/> As I recall t:id is special, if you have a parameter named id then try dropping the t

Component class inheritance and parameter binding in tapestry 5.2.5

2011-07-06 Thread Jabbar
Hello all, I have a base component called Dialog which has a number of parameters. I have created another component DialogRepairBatches which extends Dialog public class Dialog { @Parameter(required=true) @Property private String id; @Parameter(required=true) @Property pr