PHP Classes

File: assets/js/trello.js

Recommend this page to a friend!
  Packages of Michael Beck   XOOPS Publisher Module   assets/js/trello.js   Download  
File: assets/js/trello.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: XOOPS Publisher Module
Publish static HTML content and article with XOOPS
Author: By
Last change:
Date: 9 months ago
Size: 497 bytes
 

Contents

Class file image Download
$( function() { let url = 'trellostatus.php'; $('ul[id^="sort"]').sortable({ connectWith: ".sortable", receive: function (e, ui) { let status_id = $(ui.item).parent(".sortable").data("status-id"); let item_id = $(ui.item).data("item-id"); $.ajax({ url: url+'?statusId='+status_id+'&itemId='+item_id, success: function(response){ } }); } }).disableSelection(); } );