Designing Dynamic Forms

Hello folks,

I have the need to design some dynamic forms:

  • If a user chooses a different option on a dropdown the form fields will change

Out of the box I do not see a way to do this. Can anyone give me a suggestion on how to tackle this project(s)?

  Discussion posts and replies are publicly visible

Parents Reply Children
  • 0
    Certified Lead Developer
    in reply to antoniom0004

    Well, technically everything I did there should be doable using the GUI form designer, though as I mentioned previously most of us who are very familiar with form design can quite simply do things faster just banging out the "code" (such as it is) manually. 

    A "compromise" approach that might interest you, involves creating a new interface and then dragging the various layouts, sections, columns, and components into approximately the configuration you want (very fast), then for the dynamic code, switch over to "expression view" and enter the more complicated logic (the "show when" variables, more involved "save into" targets, etc) from there.  That way you'd be able to get the structure and setup in place largely without needing to hand-write everything, but have the flexibility of the direct-coding approach when needed.  I do think it's worthwhile learning both approaches, for what it's worth.

  • Exactly my thoughts Mike. Really appreciate the help.