Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I needed to sync two divs so I could have a vertical scrolling div working with a "titles div" over it, having horizontal scrolling synchronized in a table that is horizontally bigger than the screen.

So I have a problem that even as I managed to synchronize them thanks to you guys :) It looks weird and gets unsynchronized when someone inserts an item bigger than my table cells everything looses its looks and the titles stop matching the fields.

I tried fixing it with padding and margins, and by limiting the size of some fields, but it still looks funny.

I guess the bes approach is for the upper div and table to get their size from the lower div and table, kind of in the same way its done for synchronizing the divs, but I don't know how to do that.

Can you help me? I attach the CSS and the html code.

Thanks!!

<script type="text/javascript">

  function inicio(){
    keepInSync();
  }

  function keepInSync() {
      $('#cuadro').on('scroll', function () {
            $('#titulos').scrollLeft($(this).scrollLeft());
        });

      $('#titulos').on('scroll', function () {
        $('#cuadro').scrollLeft($(this).scrollLeft());
    });

  }
</script>

<style>
  .oculto{
    display:none;
  }
</style>    
</head> 

<body onload="inicio(); delayMsg();">

<div id="allcontent" style="padding-left: 10px; width: 1200px">
 <div id="header">
   <p align="right"><img src="../images/titMenuInicio.png" alt="Compras" title="Compras" /></p>
 </div>

 <div id="central">
 <div id="titulos" style="font-size: 10px; padding:0px 25px 0px 10px; margin:0px 27px 0px 10px; color: black; overflow : hidden">
       <table width="140%">
         <tr>
           <td width=" 3.5%" align="center">APROBADO</td>
           <td width=" 5.0%" align="center">FECHA</td>
           <td width=" 5.0%" align="center">SOLICITANTE</td>
           <td width=" 7.0%" align="center">ESTADO</td>
           <td width=" 6.5%" align="center">PROYECTO</td>
           <td width=" 6.5%" align="center">ITEM</td>
           <td width="12.0%" align="center">OBSERVACIONES</td>
           <td width=" 3.5%" align="center">CANT</td>
           <td width=" 3.5%" align="center">UNIDAD</td>
           <td width=" 4.5%" align="center">FECHA REQUERIDA</td>
           <td width=" 4.5%" align="center">URGENTE</td>
           <td width=" 8.0%" align="center">PROVEEDOR</td>
           <td width=" 4.5%" align="center">VALOR UNITARIO</td>
           <td width=" 7.0%" align="center">IVA</td>
           <td width="12.0%" align="center">COMENTARIOS</td>
           <td width=" 7.0%" align="center">ARCHIVOS</td>
         </tr>
       </table>
 </div>

   <form id="formulario" method="post" action="<c:url value='../administracion/editarCompras.do' />">
     <div id="cuadro" class="cuadro" style="font-size: 10px; height: 320px; padding-top: 0; margin-top: 0">

     <input type="hidden" name="accion" value="0" />

       <table width="140%" >

         <c:forEach var="pedido" items="${pedidos}">
           <tr>

             <td width="3.5%" align="center">
               <c:if test="${loggedUser.permisosPlanCompras == 0}">
                   <select name="aprobada-${pedido.id}" id="aprobada${pedido.id}" style="width:50px;" >
                     <option value="true" <c:if test="${pedido.aprobada == true}"> selected="selected"</c:if>>SI</option>
                     <option value="false" <c:if test="${pedido.aprobada == false}"> selected="selected"</c:if>>NO</option>
                   </select> 
               </c:if>
               <c:if test="${loggedUser.permisosPlanCompras == 1 || loggedUser.permisosPlanCompras == 2}">
                 <c:if test="${pedido.aprobada == true}"> SI </c:if>
                 <c:if test="${pedido.aprobada == false}"> NO </c:if>                    
               </c:if>
             </td>

             <td width="5.0%" align="center"><fmt:formatDate value='${pedido.fecha.time}' pattern='MM/dd/yyyy HH:mm' /></td>

             <td width="5.0%" align="center">${pedido.userName}</td>

             <td width="7.0%" align="center">
               <c:if test="${loggedUser.permisosPlanCompras == 0 || loggedUser.permisosPlanCompras == 1}">
                   <select name="estado-${pedido.id}" id="estado${pedido.id}" style="width: 90px;" >
                     <option value="0" <c:if test="${pedido.estado == 0}"> selected="selected"</c:if>>Nuevo</option>
                     <option value="1" <c:if test="${pedido.estado == 1}"> selected="selected"</c:if>>Cancelado</option>
                     <option value="2" <c:if test="${pedido.estado == 2}"> selected="selected"</c:if>>En almacén</option>
                     <option value="3" <c:if test="${pedido.estado == 3}"> selected="selected"</c:if>>Pedido</option>
                     <option value="4" <c:if test="${pedido.estado == 4}"> selected="selected"</c:if>>Programado</option>
                   </select> 
               </c:if>
               <c:if test="${loggedUser.permisosPlanCompras == 2}">
                 <c:if test="${pedido.estado == 0}"> Nuevo </c:if>
                 <c:if test="${pedido.estado == 1}"> Cancelado </c:if>
                 <c:if test="${pedido.estado == 2}"> En almacén </c:if>
                 <c:if test="${pedido.estado == 3}"> Pedido </c:if>
                 <c:if test="${pedido.estado == 4}"> Programado </c:if>
               </c:if>
             </td>

             <td width="6.5%" align="center">${pedido.proyecto}</td>

             <td width="6.5%" align="center">${pedido.item}</td>

             <td width="12.0%" align="center">${pedido.observaciones}</td>

             <td width="3.5%" align="center">${pedido.cant}</td>

             <td width="3.5%" align="center">${pedido.unidad}</td>

             <td width="4.5%" align="center"><fmt:formatDate value='${pedido.fechaReq.time}' pattern='MM/dd/yyyy' /></td>

             <td width="4.5%" align="center"><c:if test="${pedido.urgente == true}">URGENTE!</c:if></td>

             <td width="8.0%" align="center">
               <c:if test="${loggedUser.permisosPlanCompras == 0 || loggedUser.permisosPlanCompras == 1}">
                 <input name="proveedor-${pedido.id}" id="proveedor${pedido.id}" type="text" maxlength="60"
                  value="${pedido.proveedor}" />
               </c:if>
               <c:if test="${loggedUser.permisosPlanCompras == 2}">
                 ${pedido.proveedor}
               </c:if>
             </td>

             <td width="4.5%" align="center">
               <c:if test="${loggedUser.permisosPlanCompras == 0 || loggedUser.permisosPlanCompras == 1}">
                 <input name="valor-${pedido.id}" id="valor${pedido.id}" type="text" style="width: 60px;"                
                  value="${pedido.valor}" />
               </c:if>
               <c:if test="${loggedUser.permisosPlanCompras == 2}">
                 ${pedido.valor}
               </c:if>
             </td>

             <td width="7.0%" align="center">
               <c:if test="${loggedUser.permisosPlanCompras == 0 || loggedUser.permisosPlanCompras == 1}">
                 <input id="ivaNo${pedido.id}" name="iva-${pedido.id}" type="radio" value="false" <c:if test="${!pedido.iva}">checked="checked"</c:if> 
                    /> 
                 <label for="ivaNo${pedido.id}"> No </label>
                 <input id="ivaSi${pedido.id}" name="iva-${pedido.id}" type="radio" value="true" <c:if test="${pedido.iva}">checked="checked"</c:if>
                    /> 
                 <label for="ivaSi${pedido.id}"> Si </label> 
               </c:if>
               <c:if test="${loggedUser.permisosPlanCompras == 2}">
                 <c:if test="${pedido.iva}">Con iva</c:if>
                 <c:if test="${!pedido.iva}">Sin iva</c:if>
               </c:if>
             </td>

             <td width="12.0%" align="center">
               <c:if test="${loggedUser.permisosPlanCompras == 0 || loggedUser.permisosPlanCompras == 1 || loggedUser.permisosPlanCompras == 2}">
                 <input name="comentarios-${pedido.id}" id="comentarios${pedido.id}" type="text" maxlength="100"
                 value="${pedido.comentarios}" />
               </c:if>
             </td>

             <td width="7.0%" align="center">
               <c:if test="${loggedUser.permisosPlanCompras == 0 || loggedUser.permisosPlanCompras == 1 || loggedUser.permisosPlanCompras == 2}">
                 <c:forEach var="archivo" items="${pedido.archivos}">
                   <a href="<c:url value='../administracion/downloadPlanCompras.do?fileId=${archivo.id}' />">${archivo.nombre}</a><br />
                 </c:forEach>
               </c:if>
            </td>

           </tr>
         </c:forEach>
        </table>

      </div>

And here goes some of the CSS:

body {
    font-family:        'ABeeZee', 'Myriad Web Pro', sans-serif;
    font-size:          18px;
    margin:             0px;
}

 #allcontent{
    background:         url('../images/nico ejecutivo.png') no-repeat left  top;
    width:              1000px;
    margin:             0px auto 0px auto;
    padding:            10px 10px 10px 160px;
}

#central{
padding:            10px 10px 10px 10px;
margin:             10px 10px 10px 10px;
color:              rgb(255, 128, 0);
} 

#main {
padding:            10px;
margin:             0px 465px 10px 10px;
 } 

.cuadro {
overflow:           auto;
margin:             10px 10px 10px 10px; 
padding:            10px 10px 10px 10px; 
color:              rgb(0, 0, 0);
 }

I know I must be doing something wrong or the long way.

Can you help me?

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.