Changeset 3518


Ignore:
Timestamp:
Oct 1, 2015, 2:22:45 PM (7 years ago)
Author:
olle
Message:

Refs #801. Refs #815. Since it may take some time before the list of DNA items from selected start item lists is loaded in step 2 of wizard "Create new start DNA plate", the "Next" button is disabled until the list is loaded, in order to avoid problems:

  1. Javascript file select_dna_for_start_plate.js in resources/libprep/ updated in functions initializeStep2(event) and maxDeltaCtOnChange(event) to disable the "Next" button (both these functions call servlet ExtractionServlet with command "GetListOfItemsFromStartItemLists" and callback function dnaItemListLoaded(response)), while function dnaItemListLoaded(response) is updated to enble the "Next" button again.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/net.sf.basedb.meludi/trunk/resources/libprep/select_dna_for_start_plate.js

    r3461 r3518  
    202202    Doc.show('gocancel');
    203203    Doc.show('gonext');
     204    Doc.addClass('gonext', 'disabled');
    204205   
    205206    var url = '../Extraction.servlet?ID='+App.getSessionId();
     
    258259    }
    259260*/
     261    Doc.removeClass('gonext', 'disabled');
    260262  }
    261263 
     
    276278      }
    277279    }
     280    Doc.addClass('gonext', 'disabled');
    278281
    279282    var url = '../Extraction.servlet?ID='+App.getSessionId();
Note: See TracChangeset for help on using the changeset viewer.