- | ${_log.cfgId } |
+ ${_log.cfgId }
+
+ |
diff --git a/src/main/webapp/static/global/css/components.css b/src/main/webapp/static/global/css/components.css
index c070f1272..7c2e90262 100644
--- a/src/main/webapp/static/global/css/components.css
+++ b/src/main/webapp/static/global/css/components.css
@@ -22235,7 +22235,22 @@ Color library demo
padding-top:10px;
}
+ .logInfo {
+ padding-left:25px;
+
+ padding-top:10px;
+
+ }
+.logInfo label {
+
+ padding-left: 5px;
+
+ cursor: pointer;
+
+ vertical-align: middle;
+
+}
.customColumnList label {
diff --git a/src/main/webapp/static/global/scripts/common.js b/src/main/webapp/static/global/scripts/common.js
index 17e4657e7..239689f8d 100644
--- a/src/main/webapp/static/global/scripts/common.js
+++ b/src/main/webapp/static/global/scripts/common.js
@@ -1,4 +1,25 @@
$(function(){
+ $("a[name=viewLogInfo]>i").on("click",function(){
+ var html = "";
+ $(this).parents("tr").find("td").each(function(index,element){
+ if(index >0){
+ var text="";
+ if($(element).find(".tooltips").length > 0){
+ text=$(element).find(".tooltips").attr("data-original-title").trim();
+ }else{
+ text=$(element).text().trim()
+ }
+ html+=" ";
+ html+=" ";
+ html+=" ";
+ html+=" ";
+
+ }
+ })
+ html +=" ";
+
+ top.$.jBox(html,{height:400,width:400,title:" Log Info",showIcon:false,opacity:0.5});
+ })
var tree2 = $("select[name=lableTest]").treeMultiselect({
searchable: true,
hideSidePanel:true,
|