Changeset 172 for trunk/web-app


Ignore:
Timestamp:
Feb 4, 2010, 5:50:31 PM (14 years ago)
Author:
duh
Message:
  • added table-editor.js which makes tables multi editable (see the wizard subjects page and drag a selection over table rows and start editting)
  • updated css and templates
Location:
trunk/web-app
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/web-app/css/wizard.css

    r162 r172  
    148148    font-weight: bold;
    149149    width: auto;
     150    height: 32px;
     151    line-height: 32px;
    150152}
    151153
     
    164166.wizard .table .row {
    165167    display: block;
    166     height: 28px;
     168    height: 32px;
    167169    border-top: 1px solid #8e908f;
    168170    width: auto;
     171}
     172
     173.wizard .table .row input, .wizard .table .row select {
     174    background-color: #fff;
     175}
     176
     177.wizard .table .ui-selected {
     178    background-color: #ffab7b;
     179}
     180
     181.wizard .table .ui-selecting {
     182    background-color: #f2e3bc;
    169183}
    170184
  • trunk/web-app/js/wizard.js

    r164 r172  
    3232// @see _wizard.gsp, _navigation.gsp, _subjects.gsp
    3333function onWizardPage() {
    34     // attach help tooltips
    35     //insertYoutubePlayers();
    3634    attachHelpTooltips();
    3735    attachDatePickers();
     36
     37    // SUBJECTS
    3838    attachTableEvents();
    39     attachGroupingEvents();
    40 
    4139    resizeWizardTable();
    4240    attachSubjectSlider();
     41    new TableEditor().init('div.table','div.row','div.column');
     42   
     43    // GROUPING
     44    //attachGroupingEvents();
    4345}
    4446
Note: See TracChangeset for help on using the changeset viewer.