Changeset 20531

Show
Ignore:
Timestamp:
03/05/10 07:42:29 (5 months ago)
Author:
nilesh
Message:

some UI related changes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/core/web/src/ScheduleMain.js

    r20515 r20531  
    15891589//On scroll start remove all editor from task panel because in IE calendar fields not scroll with the row. 
    15901590function onScrollStart(){ 
    1591         if(currentCellObject) 
     1591        if(currentCellObject){ 
    15921592                currentCellObject.innerHTML = displayedValue; 
     1593                currentCellObject.style.padding = '3px 3px 3px 5px'; 
     1594        } 
    15931595} 
    15941596 
  • trunk/core/web/src/workplanResizer.js

    r20231 r20531  
    4242                var newWidth = parseInt(curWidth + pixelMovement); 
    4343                //Enforce a minimum width. 
    44                 if(newWidth < 60)       newWidth = 60; ; 
    45                 if(newWidth > (windowWidth - 303)) newWidth = (windowWidth - 303); 
     44                if(newWidth < 60)       newWidth = 60; 
     45                if(newWidth > (windowWidth - 306)) newWidth = (windowWidth - 306); 
    4646                taskListPanelWidth = newWidth; 
    4747                document.getElementById("splitterBarShadow").style.left = (newWidth + 1) + "px";