I'm using Table component to create a table in my page. My component configuration is like this: <component id="dependentInformationTable" type="contrib:Table"> <binding name="source" value="dependents"/> <binding name="columns" value="columnsString"/> <binding name="row" value="dependentLineItem"/> <binding name="pageSize" value="10" /> <binding name="rowsClass" value="beans.evenOdd.next"/> </component>
columnsString is passed in dynamically at runtime. Right now, if I resubmit the page, and return different column number for the table, tapestry gives me stale Link error. Any idea how to fix this? Thanks a lot. Ji
