PHP Classes

File: template/Asset/tool.js

Recommend this page to a friend!
  Classes of Fabrice Fesch   Melis Tool Creator   template/Asset/tool.js   Download  
File: template/Asset/tool.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Melis Tool Creator
Module for the Melis CMS to create tools
Author: By
Last change:
Date: 1 year ago
Size: 1,246 bytes
 

Contents

Class file image Download
$(function(){ $("body").on("click", ".btnAddModuleTpl", function(){ #TCADDBTN }); #TCSAVE $("body").on("click", ".btnEditModuleTpl", function(){ #TCEDIT }); $("body").on("click", ".btnDeleteModuleTpl", function(){ var id = $(this).parents("tr").attr("id"); melisCoreTool.confirm( translations.tr_moduletpl_common_button_yes, translations.tr_moduletpl_common_button_no, translations.tr_moduletpl_delete_title, translations.tr_moduletpl_delete_confirm_msg, function(data) { $.ajax({ type : 'GET', url : '/melis/ModuleTpl/List/deleteItem?id='+id, dataType : 'json', encode : true, success : function(data){ // refresh the table after deleting an item melisHelper.zoneReload("id_moduletpl_content", "moduletpl_content"); // Notifications melisHelper.melisOkNotification(data.textTitle, data.textMessage); #TCCLOSETABDELETE } }); }); }); });