1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
<?xml version="1.0" encoding="UTF-8"?>
<div xmlns:mrs="http://mrs.cmbi.ru.nl/mrs-web/ml"
xml:lang="en" lang="en">
<script src="scripts/select.js" type="text/javascript">
</script>
<script src="scripts/jquery-ui/jquery-ui.js" type="text/javascript">
</script>
<style type="text/css">
@import "css/jquery-ui.css";
</style>
<!-- Link dialog and form -->
<div id="linkDialog" title="Link" style="display:none;">
<form id="linkForm" method="POST" action="linked" style="display:none;">
<input type='hidden' name="id" />
<input type='hidden' name='d' />
<input type='hidden' name='s' />
</form>
<p>Link selected ID's to another databank.</p>
<label>Databank to link to
<select id="linkToDB" style="max-width:10em;">
<mrs:options collection="${databanks}" value="id" label="name" />
</select>
</label>
</div>
<!-- Download dialog and form -->
<div id="downloadDialog" title="Download" style="display:none;">
<form id="downloadForm" method="POST" action="download" style="display:none;">
<select name="id" multiple="true" />
<input type='hidden' name='db' />
<input type='hidden' name='format' />
</form>
<p>Download selected records.</p>
<label>Format to download files
<select id="formatForDownloads" style="max-width:10em;">
<option value="entry">Plain text</option>
<option value="fasta">FastA</option>
</select>
</label>
</div>
<!-- Align form -->
<form id="alignForm" method="POST" action="align" style="display:none;">
<input type='hidden' name='seqs' />
<!-- <select name="id" multiple="true" />-->
<!-- <input type='hidden' name='db' />-->
</form>
<div id="globalSelection" style="display:none;">
<ul>
<li>Selected:</li>
</ul>
<!-- <mrs:if test="${linkeddbs}">-->
<input type="button" name="btn1" value="Link" class="submit" onclick="GlobalSelection.link();"/>
<!-- </mrs:if>-->
<input type="button" name="btn2" value="Align" class="submit" onclick="GlobalSelection.align();"/>
<input type="button" name="download" value="Download" class="submit" onclick="GlobalSelection.download();"/>
<input type="button" name="clear" value="Clear" class="submit" onclick="GlobalSelection.clear();"/>
</div>
</div>
|