|
@@ -52,10 +52,10 @@
|
|
|
$("#divGrid table tbody tr td:last-child")
|
|
|
.on("click", "button[name='btnEdit']", function () {
|
|
|
var id = $(this).parent().children("input[type='hidden'][name='id']").val();
|
|
|
- $.popBsPartial({ url: "<%=basePath%>/admin/activity_mgr/edit.htm/" + id });
|
|
|
+ $.popBsPartial({ url: "${pageContext.request.contextPath}/admin/activity_mgr/edit.htm/" + id });
|
|
|
})
|
|
|
.on("click", "button[name='btnDelete']", function() {
|
|
|
var id = $(this).parent().children("input[type='hidden'][name='id']").val();
|
|
|
- $.delWithConfirm({ func: $.ajaxGetRefresh, funcArgs: { ajaxGetOptions: { url: "<%=basePath%>/admin/activity_mgr/delete.action/" + id } } });
|
|
|
+ $.delWithConfirm({ func: $.ajaxGetRefresh, funcArgs: { ajaxGetOptions: { url: "${pageContext.request.contextPath}/admin/activity_mgr/delete.action/" + id } } });
|
|
|
});
|
|
|
</script>
|