Docs
API
  • methods

    Object

    If it is needed, not standart CRUD, that it is possible to set CRUD methods.

    Example

    
    data: {
      proxy: {
        methods: {
          create: 'POST',
          read: 'POST',
          update: 'POST',
          destroy: 'POST'
        },
        api: {
          create: 'new.php',
          read: 'load.php',
          update: 'update.php',
          destroy: 'destroy_action.php'
        }
      }
    },
    

    Default

    
    undefined