Changeset 552 for trunk


Ignore:
Timestamp:
07/14/08 16:27:24 (16 years ago)
Author:
ramonb
Message:

job_monarch/js/jobgrid.js,
job_monarch/templates/header.tpl:

  • some window repositioning

job_monarch/conf.php:

  • remove DDD from dateformat
Location:
trunk/web2/addons/job_monarch
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/web2/addons/job_monarch/conf.php

    r532 r552  
    2727// Format of how to display a date and time in human readable format
    2828//
    29 $DATETIME_FORMAT = "%a %d %b %Y %H:%M:%S";
     29$DATETIME_FORMAT = "%d %b %Y %H:%M:%S";
    3030
    3131// Max size of small clusterimage
  • trunk/web2/addons/job_monarch/js/jobgrid.js

    r551 r552  
    338338        readOnly: true,
    339339        dataIndex: 'queued_timestamp',
    340         width: 140,
     340        width: 120,
    341341        hidden: false
    342342      },{
     
    345345        readOnly: true,
    346346        dataIndex: 'start_timestamp',
    347         width: 140,
     347        width: 120,
    348348        hidden: false
    349349      },{
     
    390390      width:100,
    391391      height:100,
    392       y: 50,
     392      y: 15,
    393393      plain:true,
    394394      shadow: true,
     
    411411      animCollapse: true,
    412412      maximizable: true,
    413       y: 400,
    414       width:900,
     413      y: 375,
     414      width:860,
    415415      height:500,
    416416      plain:true,
  • trunk/web2/addons/job_monarch/templates/header.tpl

    r549 r552  
    2828  ClusterImageWindow.height = '{clusterimage_height}';
    2929  ClusterImageWindow.width = '{clusterimage_width}';
     30  ClusterImageWindow.x = (window.innerWidth - ClusterImageWindow.width - 25);
    3031  ClusterImageWindow.show();
    3132  JobsDataStore.load( {params: {start: 0, limit: 30}} );
    3233  JobListingWindow.setTitle( "{cluster} Jobs Overview" );
     34  JobListingWindow.y = ({clusterimage_height} + 150);
    3335  JobListingWindow.show();
    3436  });
Note: See TracChangeset for help on using the changeset viewer.