Hi Bilgin, thanks for doing this; a small suggestion, what if we do this:
On Dec 18, 2009, at 9:25 PM, bibr...@apache.org wrote: > + if (this.paginate == null || formElement.hasAttribute("paginate")) { > + this.paginate = > FlexibleStringExpander.getInstance(formElement.getAttribute("paginate")); > + } else if (this.paginate == null) { this.paginate = FlexibleStringExpander.getInstance("${paginate}"); } In this way we will be able to set the "paginate" variable even if the form doesn't explicitly define the paginate attribute. What do you think? Jacopo On Dec 19, 2009, at 12:27 AM, Bilgin Ibryam wrote: > Jacopo Cappellato wrote: >> very cool, Bilgin. >> Is it possible to also set and pass the "paginate" boolean from the screen? >> In this way, the same form could be used with pagination in some screens and >> without pagination in other screens. >> >> Jacopo >> >> > Jacopo, thanks for the idea. I added this feature in r892371 > > Bilgin