Skip to main content

jQuery dynatree widget for deform

Project description

deform_widget_dynatree

Dynatree is a JavaScript dynamic tree view plugin for jQuery with support for persistence, keyboard, checkboxes, drag’n’drop, and lazy loading.

deform_widget_dynatree exposes some of its features as a widget for the deform form generation library.

REST API

deform_widget_dynatree depends on a REST API you have to implement on the server side. This API only needs to implement a single method that responds to GET requests with 2 optional parameters:

  • key Key of the node for wich children are requested.

  • mode Can be either root or branch.

    If mode is branch only the children of the requested node have to be returned (as a list of JSON objects):

      [
          'child1': {
              'key': '1',
              'title': 'One',
          },
          'child2': {
              'key': '2',
              'title': 'Two',
          },
      ]
    
    If ``mode`` is ``root`` the result must contain the children of the
    requested node (same as with ``branch``) as well as all parent nodes with
    their siblings::
    
      [
          'child1': {
              'key': '1',
              'title': 'One',
              'children': [
                  'subchild1': {
                      'key': '11',
                      'title': 'Sub One',
                          'children': [
                              'subchild11': {
                                  'key': '111',
                                  'title': 'Subsub One',
                              },
                  },
                  'subchild2': {
                      'key': '12',
                      'title': 'Sub Two',
                  },
              ],
          },
          'child2': {
              'key': '2',
              'title': 'Two',
          },
      ]

CHANGES

0.1

  • Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deform_widget_dynatree-0.1dev.tar.gz (296.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page