pgadmin4/web/pgadmin/browser/static
Harshal Dhumal ddd4768937 Backform control for selecting multiple columns.
Usage:

{
  id: 'columns', label: '{{ _('Columns') }}',
  type: 'collection', group: '{{ _('Definition') }}', editable:true,
  canDelete: true, canAdd: true, control: Backform.MultiColumnSelectControl,
  deps: ['index'], node: 'column',
  model: pgBrowser.Node.Model.extend({
    keys: ['column'],
    defaults: {
      column: undefined
    }
  })
}

Note: When using this control model should have column attribute. And node property should be column.
2016-03-22 16:52:34 +00:00
..
css Introduced new controls to show the list of a node type (by name and id) as properties of other node. 2015-12-28 01:00:20 +05:30
js Backform control for selecting multiple columns. 2016-03-22 16:52:34 +00:00