Merge branch 'ent-13309-Ayuda-de-acciones-en-alerts-view-no-se-abre' into 'develop'

Ent 13309 ayuda de acciones en alerts view no se abre

See merge request artica/pandorafms!7250
This commit is contained in:
Jose Martin 2024-04-22 09:09:23 +00:00
commit 02dd91bbfe

View File

@ -599,6 +599,33 @@ function alerts_table_controls() {
}
});
$("[id^='div_tip_']").click(function() {
var id = $(this)
.attr("id")
.split("_")[2];
$("#tip_dialog_" + id).dialog({
title: $("#tip_dialog_" + id).data("title"),
modal: true,
maxWidth: 600,
minWidth: 400,
show: {
effect: "fade",
duration: 200
},
hide: {
effect: "fade",
duration: 200
},
closeOnEscape: true,
buttons: {
Close: function() {
$(this).dialog("close");
}
}
});
});
}
$(document).ready ( function () {