- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个表,其中标题和数据是随机创建的。我也单独为数据引入了滚动,但标题与数据不匹配。由于对齐方式未设置。请帮忙
我的代码是这样的
<%--
Document : Reports
Created on : May 6, 2011, 3:12:45 PM
Author : shaiji.babu
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ page import ="com.hclt.panaroma.dashboard.dao.ReportDAONew,com.hclt.panaroma.dashboard.wrapper.HostsandDBQuery,com.hclt.panaroma.dashboard.wrapper.Unix"%>
<%@ page import ="java.util.ArrayList,java.util.Hashtable,java.util.Enumeration"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
<html>
<head>
<link rel="stylesheet" type="text/css" href='${pageContext.request.contextPath}/styles/main.css' />
<link rel="stylesheet" type="text/css" href='${pageContext.request.contextPath}/styles/error_tables.css' />
</head>
<body>
<table class=ruled width="200px" >
<%
String host = request.getParameter("hostID");
String selectedMetrics = request.getParameter("metricId");
String[] Columns = selectedMetrics.split(",");
String rad_val = request.getParameter("selectedRadio");
String startDate = request.getParameter("startDate");
String endDate = request.getParameter("endDate");
String finalTime = null;
String timeStamp = null;
ReportDAONew reportDAO = new ReportDAONew();
int tableHeaderLength = Columns.length + 1;
if (rad_val.equalsIgnoreCase("host")) {
ArrayList<Unix> myResults = (ArrayList<Unix>) reportDAO.getHostsMetrics1(host, selectedMetrics, startDate, endDate);
if (myResults.size() < 1) {%>
<tr>
<td height="20px" style="text-align: center;color: red; border-collapse: collapse;font-size: larger;font-weight: bold">NO MATCHING RECORDS FOUND</td>
</tr>
<% } else {%>
<caption align="left" style="color: gray"/>HostMeasure <br><br>
<tr>
<td colspan="<%=tableHeaderLength%>" >
<div id="reportTable" >
<table width="100%" style="border-collapse: collapse ">
<tr>
<td height="35px" style='background-color:#138399; color: white;'>
<div align="center" style="width: 50px" >
<b>TimeStamp</b>
</div>
</td>
<% for (int i = 0; i < Columns.length; i++) {%>
<td height="35px" style='background-color:#138399; color: white;'>
<div align="center" style="width: 50px" >
<b> <%= Columns[i]%></b>
</div>
</td>
<%}%>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td >
<div id="reportTable" style="overflow: auto;height: 400px;border: aqua">
<table border="2px" width="100%" style="border-collapse: collapse ">
<% for (Unix objUnix : myResults) {%>
<tr>
<%
if (objUnix.getTime_stamp() != null) {
timeStamp = objUnix.getTime_stamp();
finalTime = timeStamp.substring(0, timeStamp.length() - 5);
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="left" style="width: 120px" >
<%=finalTime%>
</div>
</td>
<% }
for (int i = 0; i < Columns.length; i++) {
if (Columns[i].equalsIgnoreCase("phymem_util")) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getPhymem_util()%>
</div></td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("Top1ProcessCPU") && objUnix.getTop1ProcessCPU() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getTop1ProcessCPU()%>
</div>
</td>
<%}%>
<%if (Columns[i].equalsIgnoreCase("Top2ProcessCPU") && objUnix.getTop2ProcessCPU() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' >
<div align="center" style="width: 120px" >
<%= objUnix.getTop2ProcessCPU()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("Top3ProcessCPU") && objUnix.getTop3ProcessCPU() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getTop3ProcessCPU()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("OpenFilesCount") && objUnix.getOpenFilesCount() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getOpenFilesCount()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("Top1Process") && objUnix.getTop1Process() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getTop1Process()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("Top2Process") && objUnix.getTop2Process() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getTop2Process()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("Top3Process") && objUnix.getTop3Process() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getTop3Process()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("UserCPU") && objUnix.getUserCPU() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getUserCPU()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("SystemCPU") && objUnix.getSystemCPU() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getSystemCPU()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("cpuutil") && objUnix.getCpuutil() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="left" style="width: 120px" >
<%= objUnix.getCpuutil()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("InBytesPerSec") && objUnix.getInBytesPerSec() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getInBytesPerSec()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("OutBytesPerSec") && objUnix.getOutBytesPerSec() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getOutBytesPerSec()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("HDA_1_Util") && objUnix.getHDA_1_Util() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getHDA_1_Util()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("HDA_2_Util") && objUnix.getHDA_2_Util() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getHDA_2_Util()%>
</div>
</td>
<%
}%>
<%if (Columns[i].equalsIgnoreCase("HDA_3_Util") && objUnix.getHDA_3_Util() != null) {
%>
<td style='background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none'>
<div align="center" style="width: 120px" >
<%= objUnix.getHDA_3_Util()%>
</div>
</td>
<%
}
}%>
</tr>
<%}%>
</table>
</div>
</td>
</tr>
<% }
} else if (rad_val.equalsIgnoreCase("hostAndComp")) {
ReportDAONew reportDAO1 = new ReportDAONew();
ArrayList<HostsandDBQuery> myresult1 = reportDAO1.getReportValues(host, startDate, endDate);
if (myresult1.size() < 1) {
%>
<tr>
<td height="20px" style="text-align: center;color: red; border-collapse: collapse;font-size: larger;font-weight: bold">NO MATCHING RECORDS FOUND</td>
</tr>
<%} else {%>
<caption align="left" style="color: gray">Host And UserCount Measure</caption>
<tr>
<td colspan="16">
<div id="reportTable" style="overflow: auto;height: 400px">
<table width="70%" style="border-collapse: collapse ">
<tr class=head>
<td width="400px" align='center'><B>Day_time</B></td>
<td style='width:100px' align='center'><B>Concurrent Users</B></td>
<td style='width:100px' align='center'><B>Active Users(5Min)</B></td>
<td style='width:100px' align='center'><B>Currently Logged</B></td>
<td style='width:100px' align='center'><B>Current Anonymous Users</B></td>
<td style='width:200px' align='center'><B>CPU Utilization(%)</B></td>
<td style='width:200px' align='center'><B>Physical Mem Utilization(%)</B></td>
<td style='width:200px' align='center'><B>User CPU(%)</B></td>
<td style='width:200px' align='center'><B>System CPU(%)</B></td>
<td style='width:200px' align='center'><B>Open Files Count</B></td>
<td style='width:200px' align='center'><B>Top1Process</B></td>
<td style='width:200px' align='center'><B>Top1 ProcessCPU</B></td>
<td style='width:200px' align='center'><B>Top2Process</B></td>
<td style='width:200px' align='center'><B>Top2 ProcessCPU</B></td>
<td style='width:200px' align='center'><B>Top3Process</B></td>
<td style='width:200px' align='center'><B>Top3 ProcessCPU</B></td>
</tr>
<%
for (HostsandDBQuery objHostDBQry : myresult1) {
timeStamp = objHostDBQry.getTime_stamp();
if (timeStamp.length() > 0) {
finalTime = timeStamp.substring(0, timeStamp.length() - 5);
}
%>
<tr >
<td style='width:400px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= finalTime%></td>
<td style='width:100px; background-color:#CCFFCC; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getConcurrent_users()%></td>
<td style='width:100px; background-color:#CCFFCC; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getActive_users()%></td>
<td style='width:100px; background-color:#CCFFCC; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getCurrently_logged_users()%></td>
<td style='width:220px; background-color:#CCFFCC; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getCurrent_anonymous_users()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getCpuutil()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getPhymem_util()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getUserCPU()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getSystemCPU()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getOpenFilesCount()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getTop1Process()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getTop1ProcessCPU()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getTop2Process()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getTop2ProcessCPU()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getTop3Process()%></td>
<td style='width:220px; background-color:#98F5FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; COLOR: #000000; TEXT-DECORATION:none' align='center'>
<%= objHostDBQry.getTop3ProcessCPU()%></td>
</tr>
<% }%>
</table>
</div>
</td>
</tr>
<%
}
%>
<%
}
%>
</table>
</body>
</html>
现在我能够正确获取标题和数据,但它会干扰页面...页面的宽度正在扩展。
最佳答案
如果我理解正确的话,你实际上有 2 个表。一个包含表头(我们称之为 headerTable),另一个包含表数据(我们称之为 dataTable)。
如果是这种情况,那么您将必须编写一些自定义 JavaScript 逻辑来循环访问数据表中第一行的单元格。检索每个单元格的实际宽度,并在 headerTable 中相应的标题单元格中设置该宽度。
类似这样的:
function resizeHeaders(dataTableFirstRowCells, headerTableCells)
{
for (var i=0; i<dataTableFirstRowCells.length; i++)
{
var cell = $(headers[i]);
var renderedWidth = cell.getWidth(); // 'getWidth' might be different depending on which (and if) js framework you use)
$(headerTableCells[i]).setWidth(renderedWidth);
}
}
关于java - 设置表格宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6095052/
这个问题已经有答案了: Is there any way to accept only numeric values in a JTextField? (20 个回答) It's possible i
我使用戴尔 XPS M1710。笔记本电脑的盖子、侧面扬声器和前置扬声器都有灯(3 组灯可以单独调节)和鼠标垫下方的灯。在 BIOS 中,我可以更改这些灯的颜色,至少是每个组。另外,我可以在鼠标垫下打
我知道我可以使用 在 iOS 5 中打开设置应用 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"
我有一个 Django 应用程序,我正在尝试为其设置文档。目录结构如下: - doc - project | - manage.py 我已经设置了路径以便 Sphinx 可以看到东西,但是当我尝试使用
我正在使用 768mb ram 运行 centos 5.5。我一直在日志中获取 server reached MaxClients setting, consider raising the MaxC
我在具有以下配置的服务器内运行了 Drupal 安装: StartServers 5 MinSpareServers 5 MaxSpareServers 15 MaxClien
是否可以使用 Microsoft.Web.Administration 包为给定的 location 配置 asp 设置? 我想以编程方式将以下部分添加到本地 IIS applicationHost.
我一直在阅读为 kube-proxy 提供参数的文档,但没有解释应该如何使用这些参数。我使用 az aks create 创建我的集群使用 azure-cli 程序,然后我获得凭据并使用 kubect
我想知道与在 PHP 中使用 setcookie() 函数相比,在客户端通过 JavaScript 设置一些 cookie 是否有任何明显的优势?我能想到的唯一原因是减少一些网络流量(第一次)。但不是
我有一个按钮可以将 body class 设置为 .blackout 我正在使用 js-cookie设置cookie,下面的代码与我的按钮相关联。 $('#boToggle').on('click'
我有一堆自定义的 HTML div。我将其中的 3 存储在具有 slide 类的 div 中。然后,我使用该幻灯片类调用 slick 函数并应用如下设置: $('.slide').slick({
我正在创建一个应该在 Windows 8(桌面)上运行的应用 我需要: 允许用户使用我的应用启动“文件历史记录”。我需要找到打开“文件历史记录”的命令行。 我需要能够显示“文件历史记录”的当前设置。
我刚买了一台新的 MacBook Pro,并尝试在系统中设置 RVM。我安装了 RVM 并将默认设置为 ➜ rvm list default Default Ruby (for new shells)
由于有关 Firestore 中时间戳行为即将发生变化的警告,我正在尝试更改我的应用的初始化代码。 The behavior for Date objects stored in Firestore
在 ICS 中,网络 -> 数据使用设置屏幕中现在有“限制后台数据”设置。 有没有办法以编程方式为我的应用程序设置“限制后台数据”? 或 有没有办法为我的应用程序调出具有选项的“数据使用”设置? 最佳
我正在尝试使用 NextJS 应用程序设置 Jest,目前在 jest.config.js : module.exports = { testPathIgnorePatterns: ["/.n
我最近升级到 FlashDevelop 4,这当然已经将我之前的所有设置恢复到原来的状态。 我遇到的问题是我无法在新设置窗口的哪个位置找到关闭它在方括号、大括号等之前插入的自动空格的选项。 即它会自动
有没有办法以编程方式访问 iPhone/iPod touch 设置? 谢谢。比兰奇 最佳答案 大多数用户设置可以通过读取存储在 /User/Library/Preferences/ 中的属性列表来访问
删除某些值时,我需要选择哪些设置来维护有序队列。我创建了带有自动增量和主键的 id 的表。当我第一次插入值时,没问题。就像 1,2,3,4,5... 当删除某些值时,顺序会发生变化,例如 1,5,3.
我正在尝试设置示例 Symfony2 项目,如此处所示 http://symfony.com/doc/current/quick_tour/the_big_picture.html 在访问 confi
我是一名优秀的程序员,十分优秀!