Docs
API
  • create

    String

    If it is needed, not standard CRUD, that it is possible to set CRUD url-s over propert api.

    create method

    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