merge with cmdb

This commit is contained in:
ibuler
2015-11-15 19:57:25 +08:00
29 changed files with 2794 additions and 436 deletions

View File

@@ -4562,3 +4562,8 @@ body.skin-3 {
.red-fonts {
color: #ed5565;
}
.form-group.required .control-label:after {
content: " *";
color: red;
}

View File

@@ -135,3 +135,11 @@ function selectAll(){
// })
//}
function getIDall() {
var check_array = [];
$(".gradeX input:checked").each(function () {
var id = $(this).attr("value");
check_array.push(id);
});
return check_array.join(",");
}