123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {"label":"JS","syntax":"js"}
- jQuery(document).ready(function($) {
-
- });
- /* {{ENTITY}} **/
- // Search
- function {{plugin}}_{{entity}}_search() {
-
- var data = {
- custom_action: '{{plugin}}_{{entity}}_search',
- };
- $.ajax({
- url : document.URL,
- method : 'POST',
- data: data,
- success : function(r){
-
- },
- error: function(xhr, status, error) {
-
- }
- });
- }
- // Save
- function {{plugin}}_{{entity}}_save(){
-
- var data = {};
- data.custom_action = '{{plugin}}_{{entity}}_save';
- $.ajax({
- url : document.URL,
- method : 'POST',
- data: data,
- success : function(r){
-
- },
- error : function(xhr, status, error) {
-
- }
- });
- }
|