:javascript function checksmiles () { if (document.form.identifier.value == "") { alert("Please draw or insert a chemical structure."); document.form.identifier.focus(); return false; }; return true; }; function checkboxes () { if ($("#model input[type=checkbox]:checked").length < 1 ){ alert("Please select an endpoint.") document.getElementById('model').focus(); return false; }; return true; }; function jsmeOnLoad() { jsmeApplet = new JSApplet.JSME("appletContainer", "380px", "340px", { //optional parameters "options" : "polarnitro" }); document.JME = jsmeApplet; }; function getsmiles() { if (document.JME.smiles() != '') { document.form.identifier.value = document.JME.smiles() ; }; }; / whole site content needs to be in one form. Input and checkboxes are proofed by js functions. %form{:name => "form", :action => to('/predict'), :method => "post", :enctype => "multipart/form-data", :onsubmit => "return !!(checksmiles() & checkboxes())" } %fieldset#top %a{:href => "#", :id => "linkInsert"} %h1 1. Draw a chemical structure :javascript $("a#linkInsert").click(function () { $("#insert").toggle(); document.location = document.location + "#" + "insert"; }); #insert %p %label   #appletContainer %br %label{:for => 'identifier'} or enter the %a{:href => "http://en.wikipedia.org/wiki/Simplified_molecular_input_line_entry_specification", :rel => "external"} SMILES string: %input{:type => 'text', :name => 'identifier', :id => 'identifier', :size => '60'} .close -#= hide_link "#insert" .arrow %img{:src=>"/images/arrow_down_float.png", :alt=>"arrow", :class=> "arrow"} %fieldset#middle %a{:href => "#models", :id => "linkModels"} %h1 2. Select one or more toxic endpoints :javascript $("a#linkModels").click(function () { $("#models").toggle(); document.location = document.location + "#" + "models"; }); #models %i Please observe validation report for model details. // TODO order models by echa endpoint currently manually added and to find in model.type[0].split("#").last #endpoint %b= "Carcinogenicity:" - @models.each do |model| #model %input{:type => "checkbox", :name => "selection[#{model.title}]", :id => "selection[#{model.title}]", :value => true, :disabled => false} %label{:for => "selection[#{model.title}]"} = "DSSTox Carcinogenic Potency DBS "+model.title.split(" ").first %a{:href=>"#", :alt=>"#{model.title} validation"} %i ( Validation report ) %br .close -#= hide_link "#models" .arrow %img{:src=>"/images/arrow_down_float.png", :alt=>"arrow", :class=> "arrow"} %fieldset#bottom %a{:href => "#predict", :id => "linkPredict"} %label{:for => "submit"} %h1 3. Predict %input{ :type => "submit", :id => "submit", :value=>">>", :onclick => "getsmiles()"}