Docs
API
  • proxy

    Object

    Example: Dynamic loading from server

    
    {
      index: 'country',
      title: 'Country',
      type: 'combo',
      data: {
        proxy: {
          url: 'countries.php',
          method: 'POST'
        }
      }
    }
    ...
    countries.php
    {"data": ["USA", "Canada", "England"]}
    

    Returned data from server must be valid JSON, in other case it will not be rendered

    Default

    
    undefined