fix tables display in chrome

git-svn-id: https://svn.coded.pt/svn/SIPRP@1684 bb69d46d-e84e-40c8-a05a-06db0d633741
0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z
Diogo Neves 15 years ago
parent dc672da3c4
commit 41f5feb4b8

@ -6,20 +6,22 @@
<ui:html binding="#{EnviarCorrecao.html1}" id="html1">
<ui:head binding="#{EnviarCorrecao.head1}" id="head1">
<ui:link binding="#{EnviarCorrecao.link1}" id="link1" url="/resources/stylesheet.css"/>
<script>
function showPdf()
{
sOptions = " width = '" + screen.availWidth + "'";
sOptions += " height= '" + screen.availHeight + "'";
var wOpen;
wOpen = window.open('./resources/pdfs/Ajuda.pdf','', sOptions );
wOpen.focus();
wOpen.moveTo(0,0);
wOpen.resizeTo( screen.availWidth, screen.availHeight );
}
</script>
<script type="text/javascript">
function showPdf()
{
sOptions = " width = '" + screen.availWidth + "'";
sOptions += " height= '" + screen.availHeight + "'";
var wOpen;
wOpen = window.open('./resources/pdfs/Ajuda.pdf','', sOptions );
wOpen.focus();
wOpen.moveTo(0,0);
wOpen.resizeTo( screen.availWidth, screen.availHeight );
}
</script>
<ui:script type="text/javascript" url="/resources/RaveThemeFix.js" />
</ui:head>
<ui:body binding="#{EnviarCorrecao.body1}" id="body1" style="-rave-layout: grid">
<ui:body binding="#{EnviarCorrecao.body1}" id="body1" style="-rave-layout: grid" onLoad="showTables( 'form1:table1' );">
<ui:form binding="#{EnviarCorrecao.form1}" id="form1">
<h:panelGrid binding="#{EnviarCorrecao.gridBase1}" columns="1" id="gridBase1"
style="height: 24px; left: 0px; top: 96px; position: absolute; width: 100%" styleClass="centerBlock" width="648">

@ -27,9 +27,10 @@
}
</script>
<ui:script type="text/javascript" url="/resources/RaveThemeFix.js" />
</ui:head>
<ui:body id="body" style="-rave-layout: grid">
<ui:body id="body" style="-rave-layout: grid" onLoad="showTables( 'tableEstatisticas' );">
<h:panelGrid columns="1" id="gridBase" style="height: 24px; left: 0px; top: 60px; position: absolute; width: 100%" styleClass="centerBlock" width="648">

@ -6,36 +6,37 @@
<ui:html binding="#{GestaoUtilizadores.html1}" id="html1">
<ui:head binding="#{GestaoUtilizadores.head1}" id="head1">
<ui:link binding="#{GestaoUtilizadores.link1}" id="link1" url="/resources/stylesheet.css"/>
<script>
function showPdf()
{
sOptions = " width = '" + screen.availWidth + "'";
sOptions += " height= '" + screen.availHeight + "'";
var wOpen;
wOpen = window.open('./resources/pdfs/Ajuda.pdf','', sOptions );
wOpen.focus();
wOpen.moveTo(0,0);
wOpen.resizeTo( screen.availWidth, screen.availHeight );
}
<script type="text/javascript">
function showPdf()
{
sOptions = " width = '" + screen.availWidth + "'";
sOptions += " height= '" + screen.availHeight + "'";
var wOpen;
wOpen = window.open('./resources/pdfs/Ajuda.pdf','', sOptions );
wOpen.focus();
wOpen.moveTo(0,0);
wOpen.resizeTo( screen.availWidth, screen.availHeight );
}
function clearEmptyTables()
{
var t1 = document.getElementById("form1:table3:tableRowGroup3:_emptyDataColumn:_emptyDataText");
if(t1)
{
t1.innerHTML = "Sem resultados";
}
function clearEmptyTables()
{
var t1 = document.getElementById("form1:table3:tableRowGroup3:_emptyDataColumn:_emptyDataText");
if(t1)
{
t1.innerHTML = "Sem resultados";
}
var t2 = document.getElementById("form1:table1:tableRowGroup1:_emptyDataColumn:_emptyDataText");
if(t2)
{
t2.innerHTML = "Sem resultados";
}
}
var t2 = document.getElementById("form1:table1:tableRowGroup1:_emptyDataColumn:_emptyDataText");
if(t2)
{
t2.innerHTML = "Sem resultados";
}
}
</script>
<ui:script type="text/javascript" url="/resources/RaveThemeFix.js" />
</ui:head>
<ui:body binding="#{GestaoUtilizadores.body1}" id="body1" style="-rave-layout: grid">
<ui:body binding="#{GestaoUtilizadores.body1}" id="body1" style="-rave-layout: grid" onLoad="showTables( 'form1:table3', 'form1:table1' );">
<ui:form binding="#{GestaoUtilizadores.form1}" id="form1">
<h:panelGrid binding="#{GestaoUtilizadores.gridBase1}" columns="1" id="gridBase1"
style="height: 24px; left: 0px; top: 96px; position: absolute; width: 100%" styleClass="centerBlock" width="648">

Loading…
Cancel
Save