Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Cloning a DynamicForm

    Hi there,

    I have a dynamicForm that I am displaying as part of a window where the user enters search criteria to launch a search. When the results display, I want to display that same dynamicForm above the results. However, if I try to show the dynamicForm there, it disappears from the original search criteria window. So, how can I have the form show up in both places? I tried using isc.clone() to create another instance of the form but it caused the following error which I've coped from Firebug below. Any suggestions?

    Code:
    this.form has no properties
    http://localhost:8080/dev/isoversion/5.7final/isomorphic/system/modules/ISC_Forms.js?isc_version=5.7.js
    Line 544

    #2
    Hi senordhuff,

    The best way to "clone" that form is to put the create() call into a function and call it multiple times.

    Comment

    Working...
    X