Announcement

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

    Combining automatic databound functions with manual

    I am working with EE and I am interested in being able to add various form items (ie a comboboxitem)to a dynamic form where most of the fields are automatically generated from an xml datasource. What I have come up with thus far is that creating the comboBoxItem stops the automatic field creation from the datasource. Is there a way to do this without programmatically recreating all the fields in the datasource?

    #2
    dynamicForm.setUseAllDataSourceFields(true) will cause all DataSource fields to be used such that the fields on the component either become overrides (if the name matches a DataSource field) or can add additional, non-persisted fields. Also works for ListGrid, TreeGrid, DetailViewer and other databound components.

    Comment


      #3
      Thank you, that works nicely. Now that this works, I would like to control where the additional form items show up in the form. The ComboBox I added ends up at the top of the form. Is there a way to place control it's placement if I want it in another location within the form?

      Thanks for your help.

      Comment

      Working...
      X