Dev at weitling a écrit :
This is disabled in cocoon 2.1.9 at least.Hi,I've examined many dynamic forms built-in samples in Cocoon. So, I'm wondering - does the following pipeline valid:SQL DB Select query | SQL Transformer | XSLT Transformer converting rows/columns nodes into CForm defitition | Applying CForm XSL Stylesheet, rendering form. In other words, is it possible to get dynamic CForm definition whithin pipeline processing? If it does, "how-to"? Any examplesI didn't try it, yet, but it should be no problem. In the flowscript you create your Forms object like this: var form = new Form("myDefinition.xml"); which usually loads the definition from the file myDefinition.xml. But you may also use any source Cocoon supports i.e. cocoon:, context: ... So when you put your first three steps in a pipeline and call it like this: var form = new Form("cocoon:/createCFormDefinition"); I tried this approche before and it eventually killed the JVM because each new form compiles a java class. I solved the problem using a more complex but generic CForm definition, postponing the instantiation in the template and the binding files. you only have to do the same for a CForm template if it should be dynamically created - just replace the call to a file with a call to a pipeline. Hope this helped :-) Florian --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] Best regards, -- Philippe Gauthier INSERM DRH - SIRH--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] |
Re: Dynamically generated CForm definition
Philippe Gauthier - INSERM SIRH Wed, 25 Jul 2007 06:01:16 -0700
- Dynamically generated CForm definition Dimas51
- Re: Dynamically generated CForm defin... Dev at weitling
- Re: Dynamically generated CForm d... Philippe Gauthier - INSERM SIRH
- Re: Dynamically generated CFo... Derek Hohls
- Re: Dynamically generated CFo... Niels van Kampenhout