Changeset 5949
- Timestamp:
- Feb 8, 2012, 3:35:29 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 71 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/HideableSection.java
r5935 r5949 24 24 import javax.servlet.jsp.JspException; 25 25 import javax.servlet.jsp.JspTagException; 26 import javax.servlet.jsp.tagext.TagSupport;27 26 28 27 import net.sf.basedb.core.ItemContext; -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/path/Path.java
r5946 r5949 24 24 import javax.servlet.jsp.JspException; 25 25 import javax.servlet.jsp.JspTagException; 26 import javax.servlet.jsp.tagext.TagSupport;27 26 import javax.servlet.http.HttpServletRequest; 28 27 -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/path/PathElement.java
r5918 r5949 24 24 import javax.servlet.jsp.JspException; 25 25 import javax.servlet.jsp.JspTagException; 26 import javax.servlet.jsp.tagext.TagSupport;27 26 28 27 import net.sf.basedb.clients.web.taglib.StylableTag; -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/Data.java
r5948 r5949 88 88 The <code><tbl:data></code> may contain the following subtags: 89 89 <ul> 90 <li>{@link Columns <tbl:columns>}: Placeholder for column headers90 <li>{@link Headers <tbl:headers>}: Placeholder for column headers 91 91 <li>{@link Rows <tbl:rows>}: Placeholder for rows 92 92 </ul> -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/Header.java
r5948 r5949 31 31 /** 32 32 This tag defines a header column among the colummns 33 or on a row. It should be placed inside a {@link Columns<tbl:headers>}33 or on a row. It should be placed inside a {@link HeaderRow <tbl:headers>} 34 34 or {@link Row <tbl:row>} tag. 35 35 -
trunk/www/admin/annotationtypecategories/edit_category.jsp
r5946 r5949 170 170 var url = '../annotationtypes/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addAnnotationTypeCallback'; 171 171 url += '&exclude='+annotationtypes.join(','); 172 Main.openPopup(url, 'AddAnnotationTypes', 10 00, 700);172 Main.openPopup(url, 'AddAnnotationTypes', 1050, 700); 173 173 } 174 174 -
trunk/www/admin/annotationtypes/edit_annotationtype.jsp
r5946 r5949 359 359 var url = '../annotationtypecategories/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addCategoryCallback'; 360 360 url += '&exclude='+categories.join(','); 361 Main.openPopup(url, 'AddCategories', 10 00, 700);361 Main.openPopup(url, 'AddCategories', 1050, 700); 362 362 } 363 363 -
trunk/www/admin/extensions/wizard.jsp
r5935 r5949 95 95 96 96 <div class="content bottomborder"> 97 <tbl:table id="extensions" >97 <tbl:table id="extensions" subclass="fulltable"> 98 98 <tbl:columndef id="file" title="File" /> 99 99 <tbl:columndef id="status" title="Status" /> … … 102 102 <tbl:columndef id="about" title="About" /> 103 103 104 <tbl:data> 105 <tbl:columns></tbl:columns> 104 <tbl:data style="top: 0px; margin-top: 0px;"> 105 <tbl:headers> 106 <tbl:headerrow> 107 <tbl:columnheaders /> 108 </tbl:headerrow> 109 </tbl:headers> 106 110 <tbl:rows> 107 111 <% … … 193 197 { 194 198 %> 195 <div class=" error" style="text-align: left; margin: 0px;">199 <div class="messagecontainer error"> 196 200 <%=error.getClass().getSimpleName()%>: <%=HTML.encodeTags(error.getMessage())%> 197 201 </div> -
trunk/www/admin/groups/edit_group.jsp
r5946 r5949 234 234 var url = '../users/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addUserCallback'; 235 235 url += '&exclude='+users.join(','); 236 Main.openPopup(url, 'AddUsers', 10 00, 700);236 Main.openPopup(url, 'AddUsers', 1050, 700); 237 237 } 238 238 function addUserCallback(userId, name) … … 247 247 var url = '../groups/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addGroupCallback'; 248 248 url += '&exclude='+groups.join(','); 249 Main.openPopup(url, 'AddGroups', 10 00, 700);249 Main.openPopup(url, 'AddGroups', 1050, 700); 250 250 } 251 251 function addGroupCallback(groupId, name) -
trunk/www/admin/itemsubtypes/edit_subtype.jsp
r5946 r5949 234 234 } 235 235 url += '&exclude=<%=itemId%>'; 236 Main.openPopup(url, 'SelectReleatedSubtype', 10 00, 700);236 Main.openPopup(url, 'SelectReleatedSubtype', 1050, 700); 237 237 } 238 238 function setRelatedCallback(id, name) … … 257 257 url += '&resetTemporary=1&tmpfilter:INT:itemType=' + itemInfo[itemType].value; 258 258 url += "&exclude="+excludes; 259 Main.openPopup(url, 'AddFileTypes', 10 00, 700);259 Main.openPopup(url, 'AddFileTypes', 1050, 700); 260 260 } 261 261 function addFileTypeCallback(fileTypeId, name) -
trunk/www/admin/jobagents/edit_agent.jsp
r5946 r5949 161 161 var url = '../plugindefinitions/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addPluginCallback'; 162 162 url += '&exclude='+plugins.join(','); 163 Main.openPopup(url, 'AddPlugins', 10 00, 700);163 Main.openPopup(url, 'AddPlugins', 1050, 700); 164 164 } 165 165 function addPluginCallback(pluginId, name) -
trunk/www/admin/platforms/edit_platform.jsp
r5946 r5949 196 196 { 197 197 var frm = document.forms['platform']; 198 Main.openPopup('../datafiletypes/index.jsp?ID=<%=ID%>&mode=selectmultiple&callback=addFileTypeCallback', 'AddFileTypes', 10 00, 700);198 Main.openPopup('../datafiletypes/index.jsp?ID=<%=ID%>&mode=selectmultiple&callback=addFileTypeCallback', 'AddFileTypes', 1050, 700); 199 199 } 200 200 function addFileTypeCallback(fileTypeId, name) -
trunk/www/admin/platforms/variants/edit_variant.jsp
r5946 r5949 203 203 { 204 204 var frm = document.forms['variant']; 205 Main.openPopup('../../datafiletypes/index.jsp?ID=<%=ID%>&mode=selectmultiple&callback=addFileTypeCallback', 'AddFileTypes', 10 00, 700);205 Main.openPopup('../../datafiletypes/index.jsp?ID=<%=ID%>&mode=selectmultiple&callback=addFileTypeCallback', 'AddFileTypes', 1050, 700); 206 206 } 207 207 function addFileTypeCallback(fileTypeId, name) -
trunk/www/admin/pluginconfigurations/edit_configuration.jsp
r5946 r5949 223 223 %> 224 224 if (frm.plugindefinition_id.length > 0) url += '&item_id='+frm.plugindefinition_id[0].value; 225 Main.openPopup(url, 'SelectPluginDefinition', 10 00, 700);225 Main.openPopup(url, 'SelectPluginDefinition', 1050, 700); 226 226 } 227 227 function setPluginCallback(id, name) -
trunk/www/admin/plugindefinitions/edit_plugin.jsp
r5946 r5949 252 252 var url = '../jobagents/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addAgentCallback'; 253 253 url += '&exclude='+agents.join(','); 254 Main.openPopup(url, 'AddAgents', 10 00, 700);254 Main.openPopup(url, 'AddAgents', 1050, 700); 255 255 } 256 256 function addAgentCallback(agentId, name) -
trunk/www/admin/protocols/edit_protocol.jsp
r5946 r5949 188 188 url += '&item_id='+id; 189 189 } 190 Main.openPopup(url, 'SelectFile', 10 00, 700);190 Main.openPopup(url, 'SelectFile', 1050, 700); 191 191 } 192 192 function setFileCallback(id, path) … … 239 239 url += '&resetTemporary=1&tmpfilter:BOOLEAN:protocolParameter=true'; 240 240 url += "&exclude="+excludes; 241 Main.openPopup(url, 'AddAnnotationTypes', 10 00, 700);241 Main.openPopup(url, 'AddAnnotationTypes', 1050, 700); 242 242 } 243 243 function addAnnotationTypeCallback(annotationTypeId, name) -
trunk/www/admin/roles/edit_role.jsp
r5946 r5949 235 235 var url = '../users/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addUserCallback'; 236 236 url += '&exclude='+users.join(','); 237 Main.openPopup(url, 'AddUsers', 10 00, 700);237 Main.openPopup(url, 'AddUsers', 1050, 700); 238 238 } 239 239 function addUserCallback(userId, name) -
trunk/www/admin/services/services.jsp
r5935 r5949 56 56 </base:head> 57 57 <base:body> 58 58 <h1>Manage Services</h1> 59 <div class="content"> 59 60 <tbl:table 60 61 id="services" 61 62 subclass="fulltable topborder" 62 63 columns="all" 63 64 > … … 78 79 title="Actions" 79 80 /> 80 <tbl:data> 81 <tbl:columns /> 81 <tbl:data style="top: 0px; margin-top: 0px;"> 82 <tbl:headers> 83 <tbl:headerrow> 84 <tbl:columnheaders /> 85 </tbl:headerrow> 86 </tbl:headers> 82 87 <tbl:rows> 83 84 88 <% 85 89 Extension last = null; … … 112 116 { 113 117 %> 114 <div class=" error">118 <div class="messagecontainer error"> 115 119 <base:icon image="error.png" 116 120 onclick="<%="toggleStacktrace(event, '" + ext.getId() + "')"%>" … … 163 167 <% 164 168 } 169 if (numServices == 0) 170 { 171 %> 172 <tbl:panel clazz="messagepanel"> 173 <div class="messagecontainer note">No services are installed</div> 174 </tbl:panel> 175 <% 176 } 165 177 %> 166 178 </tbl:rows> 167 179 </tbl:data> 168 <%169 if (numServices == 0)170 {171 %>172 <tbl:panel>No services are installed</tbl:panel>173 <%174 }175 %>176 180 </tbl:table> 177 181 </div> 178 182 </base:body> 179 183 </base:page> -
trunk/www/admin/users/edit_default_membership.jsp
r5922 r5949 158 158 var url = '../roles/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addRoleCallback'; 159 159 url += '&exclude='+roles.join(','); 160 Main.openPopup(url, 'AddRoles', 10 00, 700);160 Main.openPopup(url, 'AddRoles', 1050, 700); 161 161 } 162 162 function addRoleCallback(roleId, name) … … 172 172 var url = '../groups/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addGroupCallback'; 173 173 url += '&exclude='+groups.join(','); 174 Main.openPopup(url, 'AddGroups', 10 00, 700);174 Main.openPopup(url, 'AddGroups', 1050, 700); 175 175 } 176 176 function addGroupCallback(groupId, name) -
trunk/www/admin/users/edit_user.jsp
r5946 r5949 398 398 var url = '../roles/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addRoleCallback'; 399 399 url += '&exclude='+roles.join(','); 400 Main.openPopup(url, 'AddRoles', 10 00, 700);400 Main.openPopup(url, 'AddRoles', 1050, 700); 401 401 } 402 402 function addRoleCallback(roleId, name) … … 411 411 var url = '../groups/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addGroupCallback'; 412 412 url += '&exclude='+groups.join(','); 413 Main.openPopup(url, 'AddGroups', 10 00, 700);413 Main.openPopup(url, 'AddGroups', 1050, 700); 414 414 } 415 415 function addGroupCallback(groupId, name) -
trunk/www/biomaterials/bioplates/edit_bioplate.jsp
r5946 r5949 229 229 var url = '../../lims/geometries/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectone&callback=setPlateGeometryCallback'; 230 230 if (frm.plategeometry_id.length > 0) url += '&item_id='+frm.plategeometry_id[0].value; 231 Main.openPopup(url, 'SelectPlateGeometry', 10 00, 700);231 Main.openPopup(url, 'SelectPlateGeometry', 1050, 700); 232 232 } 233 233 function setPlateGeometryCallback(plateGeometryId, name) … … 248 248 var url = '../bioplatetypes/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectone&callback=setBioPlateTypeCallback'; 249 249 if (frm.bioplatetype_id.length > 0) url += '&item_id='+frm.bioplatetype_id[0].value; 250 Main.openPopup(url, 'SelectBioPlateType', 10 00, 700);250 Main.openPopup(url, 'SelectBioPlateType', 1050, 700); 251 251 } 252 252 function setBioPlateTypeCallback(bioPlateTypeId, name) … … 272 272 } 273 273 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype=<%=SystemItems.getId(Hardware.FREEZER)%>'; 274 Main.openPopup(url, 'SelectFreezer', 10 00, 700);274 Main.openPopup(url, 'SelectFreezer', 1050, 700); 275 275 } 276 276 function setFreezerCallback(freezerId, name) -
trunk/www/biomaterials/bioplates/events/edit_event.jsp
r5946 r5949 149 149 } 150 150 url += '&resetTemporary=1'; 151 Main.openPopup(url, 'SelectHardware', 10 00, 700);151 Main.openPopup(url, 'SelectHardware', 1050, 700); 152 152 } 153 153 function setHardwareCallback(id, name) … … 174 174 } 175 175 url += '&resetTemporary=1'; 176 Main.openPopup(url, 'SelectProtocol', 10 00, 700);176 Main.openPopup(url, 'SelectProtocol', 1050, 700); 177 177 } 178 178 function setProtocolCallback(id, name) -
trunk/www/biomaterials/bioplates/events/view_event.jsp
r5946 r5949 432 432 /> 433 433 <tbl:data> 434 <tbl:columns></tbl:columns> 434 <tbl:headers> 435 <tbl:headerrow> 436 <tbl:columnheaders /> 437 </tbl:headerrow> 438 </tbl:headers> 435 439 <tbl:rows> 436 440 <% -
trunk/www/biomaterials/bioplates/wells/edit_biowell.jsp
r5913 r5949 141 141 } 142 142 %> 143 Main.openPopup(url, 'Select'+type, 10 00, 700);143 Main.openPopup(url, 'Select'+type, 1050, 700); 144 144 } 145 145 function setBioMaterialCallback(id, name) -
trunk/www/biomaterials/biosources/view_biosource.jsp
r5946 r5949 343 343 /> 344 344 <tbl:data> 345 <tbl:columns> 346 </tbl:columns> 345 <tbl:headers> 346 <tbl:headerrow> 347 <tbl:columnheaders /> 348 </tbl:headerrow> 349 </tbl:headers> 347 350 <tbl:rows> 348 351 <% -
trunk/www/biomaterials/events/edit_event.jsp
r5913 r5949 140 140 url += '&item_id='+id; 141 141 } 142 Main.openPopup(url, 'SelectProtocol', 10 00, 700);142 Main.openPopup(url, 'SelectProtocol', 1050, 700); 143 143 } 144 144 function setProtocolCallback(id, name) -
trunk/www/biomaterials/extracts/edit_extract.jsp
r5946 r5949 403 403 url += '&item_id='+id; 404 404 } 405 Main.openPopup(url, 'SelectProtocol', 10 00, 700);405 Main.openPopup(url, 'SelectProtocol', 1050, 700); 406 406 } 407 407 function setProtocolCallback(id, name) … … 433 433 url += '&item_id='+id; 434 434 } 435 Main.openPopup(url, 'SelectTag', 10 00, 700);435 Main.openPopup(url, 'SelectTag', 1050, 700); 436 436 } 437 437 function setTagCallback(id, name) … … 463 463 url += '&tmpfilter:INT:bioPlateType.itemSubtype='+(subtypeId ? '|' + subtypeId : '='); 464 464 url += '&tmpfilter:BOOLEAN:destroyed=false'; 465 Main.openPopup(url, 'SelectBioplate', 10 00, 700);465 Main.openPopup(url, 'SelectBioplate', 1050, 700); 466 466 } 467 467 function setBioPlateCallback(id, name) … … 525 525 url += '&tmpfilter:STRING:originalBioMaterial.name='+escape('='); 526 526 url += '&columns=row,column'; 527 Main.openPopup(url, 'SelectBiowell', 7 00, 700);527 Main.openPopup(url, 'SelectBiowell', 750, 500); 528 528 } 529 529 function setBioWellCallback(id, name) … … 566 566 url += '&item_id='+id; 567 567 } 568 Main.openPopup(url, 'SelectSample', 10 00, 700);568 Main.openPopup(url, 'SelectSample', 1050, 700); 569 569 } 570 570 function setSampleCallback(id, name) … … 591 591 url += '&callback=addExtractCallback&resetTemporary=1'; 592 592 url += ItemSubtype.createRelatedFilter('extract', 'EXTRACT'); 593 Main.openPopup(url, 'AddExtracts', 10 00, 700);593 Main.openPopup(url, 'AddExtracts', 1050, 700); 594 594 } 595 595 -
trunk/www/biomaterials/extracts/view_extract.jsp
r5946 r5949 431 431 /> 432 432 <tbl:data> 433 <tbl:columns> 434 </tbl:columns> 433 <tbl:headers> 434 <tbl:headerrow> 435 <tbl:columnheaders /> 436 </tbl:headerrow> 437 </tbl:headers> 435 438 <tbl:rows> 436 439 <% … … 513 516 /> 514 517 <tbl:data> 515 <tbl:columns></tbl:columns> 518 <tbl:headers> 519 <tbl:headerrow> 520 <tbl:columnheaders /> 521 </tbl:headerrow> 522 </tbl:headers> 516 523 <tbl:rows> 517 524 <% -
trunk/www/biomaterials/lists/members/list_members.jsp
r5948 r5949 128 128 function addItems() 129 129 { 130 Main.openPopup('add_members_frameset.jsp?ID=<%=ID%>&list_id=<%=bioMaterialListId%>', 'AddMembers', 10 00, 700);130 Main.openPopup('add_members_frameset.jsp?ID=<%=ID%>&list_id=<%=bioMaterialListId%>', 'AddMembers', 1050, 700); 131 131 } 132 132 function removeItems() -
trunk/www/biomaterials/lists/merge.jsp
r5937 r5949 93 93 url += "&exclude="+excludes; 94 94 url += '&resetTemporary=1&tmpfilter:INT:memberType=<%=bmList.getMemberType().getValue()%>'; 95 Main.openPopup(url, 'AddBioMaterialLists', 10 00, 700);95 Main.openPopup(url, 'AddBioMaterialLists', 1050, 700); 96 96 } 97 97 function addBioMaterialListsCallback(bioMaterialListId, name) -
trunk/www/biomaterials/samples/edit_sample.jsp
r5946 r5949 381 381 url += '&item_id='+id; 382 382 } 383 Main.openPopup(url, 'SelectProtocol', 10 00, 700);383 Main.openPopup(url, 'SelectProtocol', 1050, 700); 384 384 } 385 385 function setProtocolCallback(id, name) … … 417 417 url += '&tmpfilter:INT:bioPlateType.itemSubtype='+(subtypeId ? '|' + subtypeId : '='); 418 418 url += '&tmpfilter:BOOLEAN:destroyed=false'; 419 Main.openPopup(url, 'SelectBioplate', 10 00, 700);419 Main.openPopup(url, 'SelectBioplate', 1050, 700); 420 420 } 421 421 function setBioPlateCallback(id, name) … … 479 479 url += '&tmpfilter:STRING:originalBioMaterial.name='+escape('='); 480 480 url += '&columns=row,column'; 481 Main.openPopup(url, 'SelectBiowell', 7 00, 700);481 Main.openPopup(url, 'SelectBiowell', 750, 500); 482 482 } 483 483 function setBioWellCallback(id, name) … … 518 518 url += '&item_id='+id; 519 519 } 520 Main.openPopup(url, 'SelectBioSource', 10 00, 700);520 Main.openPopup(url, 'SelectBioSource', 1050, 700); 521 521 } 522 522 function setBioSourceCallback(id, name) … … 544 544 url += '&callback=addSampleCallback&resetTemporary=1'; 545 545 url += ItemSubtype.createRelatedFilter('sample', 'SAMPLE'); 546 Main.openPopup(url, 'AddSamples', 10 00, 700);546 Main.openPopup(url, 'AddSamples', 1050, 700); 547 547 } 548 548 function addSampleCallback(sampleId, name) -
trunk/www/biomaterials/wizards/create_child_bioplate_step1.jsp
r5928 r5949 175 175 var childType = frm.child_biomaterial_type[frm.child_biomaterial_type.selectedIndex].value; 176 176 url += ItemSubtype.createRelatedFilter('main', 'HARDWARE', '', childType+'_subtype_id'); 177 Main.openPopup(url, 'SelectHardware', 10 00, 700);177 Main.openPopup(url, 'SelectHardware', 1050, 700); 178 178 } 179 179 function setHardwareCallback(id, name) … … 202 202 var childType = frm.child_biomaterial_type[frm.child_biomaterial_type.selectedIndex].value; 203 203 url += ItemSubtype.createRelatedFilter('main', 'PROTOCOL', '', childType+'_subtype_id'); 204 Main.openPopup(url, 'SelectProtocol', 10 00, 700);204 Main.openPopup(url, 'SelectProtocol', 1050, 700); 205 205 } 206 206 … … 230 230 var childType = frm.child_biomaterial_type[frm.child_biomaterial_type.selectedIndex].value; 231 231 url += ItemSubtype.createRelatedFilter('main', 'TAG', '', childType+'_subtype_id'); 232 Main.openPopup(url, 'SelectTag', 10 00, 700);232 Main.openPopup(url, 'SelectTag', 1050, 700); 233 233 } 234 234 … … 253 253 if (frm.plategeometry_id.length > 0) url += '&item_id='+frm.plategeometry_id[0].value; 254 254 url += '&resetTemporary=1'; 255 Main.openPopup(url, 'SelectPlateGeometry', 10 00, 700);255 Main.openPopup(url, 'SelectPlateGeometry', 1050, 700); 256 256 } 257 257 function setPlateGeometryCallback(id, name) … … 283 283 url += '&tmpfilter:INT:itemSubtype='+(subtypeId ? '|' + subtypeId : '='); 284 284 285 Main.openPopup(url, 'SelectBioPlateType', 10 00, 700);285 Main.openPopup(url, 'SelectBioPlateType', 1050, 700); 286 286 } 287 287 function setBioPlateTypeCallback(bioPlateTypeId, name) … … 307 307 } 308 308 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype=<%=SystemItems.getId(Hardware.FREEZER)%>'; 309 Main.openPopup(url, 'SelectFreezer', 10 00, 700);309 Main.openPopup(url, 'SelectFreezer', 1050, 700); 310 310 } 311 311 function setFreezerCallback(freezerId, name) -
trunk/www/biomaterials/wizards/create_child_bioplate_step2.jsp
r5928 r5949 586 586 url += '&tmpfilter:INT:destinationGeometry.columns='+destPlates[0].columns; 587 587 url += '&tmpfilter:INT:destinationCount=' + destPlates.length; 588 Main.openPopup(url, 'SelectPlateMapping', 10 00, 700);588 Main.openPopup(url, 'SelectPlateMapping', 1050, 700); 589 589 } 590 590 -
trunk/www/biomaterials/wizards/move_biomaterial.jsp
r5927 r5949 411 411 %> 412 412 url += '&exclude='+sourcePlate.id; 413 Main.openPopup(url, 'SelectBioPlate', 10 00, 700);413 Main.openPopup(url, 'SelectBioPlate', 1050, 700); 414 414 } 415 415 … … 611 611 } 612 612 %> 613 Main.openPopup(url, 'SelectHardware', 10 00, 700);613 Main.openPopup(url, 'SelectHardware', 1050, 700); 614 614 } 615 615 function setHardwareCallback(id, name) … … 649 649 } 650 650 %> 651 Main.openPopup(url, 'SelectProtocol', 10 00, 700);651 Main.openPopup(url, 'SelectProtocol', 1050, 700); 652 652 } 653 653 function setProtocolCallback(id, name) … … 679 679 url += '&tmpfilter:INT:destinationGeometry.columns='+destPlate.columns; 680 680 url += '&tmpfilter:INT:destinationCount=1'; 681 Main.openPopup(url, 'SelectPlateMapping', 10 00, 700);681 Main.openPopup(url, 'SelectPlateMapping', 1050, 700); 682 682 } 683 683 -
trunk/www/biomaterials/wizards/place_on_plate.jsp
r5927 r5949 412 412 } 413 413 %> 414 Main.openPopup(url, 'SelectBioPlate', 10 00, 700);414 Main.openPopup(url, 'SelectBioPlate', 1050, 700); 415 415 } 416 416 … … 569 569 } 570 570 %> 571 Main.openPopup(url, 'SelectHardware', 10 00, 700);571 Main.openPopup(url, 'SelectHardware', 1050, 700); 572 572 } 573 573 function setHardwareCallback(id, name) … … 612 612 } 613 613 %> 614 Main.openPopup(url, 'SelectProtocol', 10 00, 700);614 Main.openPopup(url, 'SelectProtocol', 1050, 700); 615 615 } 616 616 function setProtocolCallback(id, name) -
trunk/www/common/context/manage.jsp
r5946 r5949 47 47 %> 48 48 <base:page type="popup" title="Manage presets"> 49 <base:head scripts="table.js" styles="table.css ">49 <base:head scripts="table.js" styles="table.css,toolbar.css"> 50 50 <script language="JavaScript"> 51 51 function loadContext(contextId) … … 103 103 <tbl:table 104 104 id="contexts" 105 106 105 action="index.jsp" 107 106 > … … 133 132 </tbl:toolbar> 134 133 <tbl:data> 135 <tbl:columns> 136 <tbl:header 137 clazz="index" 138 style="border-right: 1px solid #999999" 139 > </tbl:header> 140 <tbl:header 141 clazz="check" 142 style="border-right: 1px solid #999999" 143 visible="true" 144 ><base:icon 145 image="check_uncheck.png" 146 tooltip="Check/uncheck all" 147 onclick="Forms.checkUncheck(document.forms['contexts'])" style="align: left;" 148 /></tbl:header> 149 </tbl:columns> 134 <tbl:headers> 135 <tbl:headerrow> 136 <tbl:header 137 clazz="index" 138 /> 139 <tbl:header 140 clazz="check" 141 visible="true" 142 ><base:icon 143 image="check_uncheck.png" 144 tooltip="Check/uncheck all" 145 onclick="Forms.checkUncheck(document.forms['contexts'])" style="align: left;" 146 /> 147 </tbl:header> 148 <tbl:columnheaders /> 149 </tbl:headerrow> 150 </tbl:headers> 150 151 <tbl:rows> 151 152 <% … … 159 160 %> 160 161 <tbl:row> 161 <tbl:header 162 clazz="index" 163 style="border-right: 1px solid #999999" 164 ><%=numListed%></tbl:header> 162 <tbl:header clazz="index"><%=numListed%></tbl:header> 165 163 <tbl:header 166 164 clazz="check" 167 style="border-right: 1px solid #999999"168 visible="true"169 165 ><input 170 166 type="checkbox" … … 181 177 } 182 178 } 179 if (numListed == 0) 180 { 181 %> 182 <tbl:panel clazz="messagepanel"> 183 <div class="messagecontainer note">No presets were found</div> 184 </tbl:panel> 185 <% 186 } 183 187 %> 184 188 </tbl:rows> 185 189 </tbl:data> 186 <%187 if (numListed == 0)188 {189 %>190 <tbl:panel>No presets were found</tbl:panel>191 <%192 }193 %>194 190 </tbl:table> 195 191 <br> -
trunk/www/common/datafiles/select_files.jsp
r5946 r5949 185 185 lastFileTypeId = fileTypeId; 186 186 lastHasValidator = hasValidator; 187 Main.openPopup(url, 'SelectFile', 10 00, 700);187 Main.openPopup(url, 'SelectFile', 1050, 700); 188 188 if (event.stopPropagation) 189 189 { … … 214 214 lastFileTypeId = fileTypeId; 215 215 lastHasValidator = hasValidator; 216 Main.openPopup(url, 'SelectFile', 10 00, 700);216 Main.openPopup(url, 'SelectFile', 1050, 700); 217 217 if (event.stopPropagation) 218 218 { -
trunk/www/common/import/select_file.jsp
r5946 r5949 126 126 var frm = document.forms['import']; 127 127 var url = '../../filemanager/index.jsp?ID=<%=ID%>&cmd=SelectOne&title=Select+file+to+import&callback=setFileCallback'; 128 Main.openPopup(url, 'SelectFile', 10 00, 700);128 Main.openPopup(url, 'SelectFile', 1050, 700); 129 129 } 130 130 function setFileCallback(fileId, path) -
trunk/www/common/ownership/ownership.jsp
r5907 r5949 98 98 url += '&item_id='+id; 99 99 } 100 Main.openPopup(url, 'SelectOwner', 10 00, 700);100 Main.openPopup(url, 'SelectOwner', 1050, 700); 101 101 } 102 102 function setOwnerCallback(id, name) -
trunk/www/common/plugin/configure.jsp
r5946 r5949 514 514 var url = '../../filemanager/index.jsp?ID=<%=ID%>&cmd=SelectOne&callback=setFileCallback'; 515 515 lastFileInputName = inputName; 516 Main.openPopup(url, 'SelectFile', 10 00, 700);516 Main.openPopup(url, 'SelectFile', 1050, 700); 517 517 } 518 518 function setFileCallback(fileId, path, inputName) … … 584 584 url += '&fileName=' + encodeURIComponent(frm[inputName].value.substring(i+1)); 585 585 } 586 Main.openPopup(url, 'SaveAs', 10 00, 700);586 Main.openPopup(url, 'SaveAs', 1050, 700); 587 587 } 588 588 function saveAsCallback(path) … … 648 648 function testWithFile() 649 649 { 650 Main.openPopup('test_with_file.jsp?ID=<%=ID%>', 'TestWithFile', 10 00, 800);650 Main.openPopup('test_with_file.jsp?ID=<%=ID%>', 'TestWithFile', 1050, 700); 651 651 } 652 652 -
trunk/www/common/plugin/test_with_file.jsp
r5946 r5949 97 97 var frm = document.forms['testwithfile']; 98 98 var url = '../../filemanager/index.jsp?ID=<%=ID%>&cmd=SelectOne&title=Test+with+file&callback=setFileCallback'; 99 Main.openPopup(url, 'SelectFile', 10 00, 700);99 Main.openPopup(url, 'SelectFile', 1050, 700); 100 100 } 101 101 function setFileCallback(fileId, path) -
trunk/www/common/share/share.jsp
r5907 r5949 329 329 var ids = Link.getListIds(document.forms['share'].members, 'U'); 330 330 var excludes = ids.join(','); 331 Main.openPopup('../../admin/users/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addUserCallback&permission=READ&exclude='+excludes, 'AddUsers', 10 00, 700);331 Main.openPopup('../../admin/users/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addUserCallback&permission=READ&exclude='+excludes, 'AddUsers', 1050, 700); 332 332 } 333 333 function addUserCallback(userId, name) … … 352 352 %> 353 353 var excludes = ids.join(','); 354 Main.openPopup('../../admin/groups/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addGroupCallback&permission=READ&exclude='+excludes, 'AddGroups', 10 00, 700);354 Main.openPopup('../../admin/groups/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addGroupCallback&permission=READ&exclude='+excludes, 'AddGroups', 1050, 700); 355 355 } 356 356 function addGroupCallback(groupId, name) … … 367 367 var ids = Link.getListIds(document.forms['share'].members, 'P'); 368 368 var excludes = ids.join(','); 369 Main.openPopup('../../my_base/projects/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addProjectCallback&exclude='+excludes, 'AddProjects', 10 00, 700);369 Main.openPopup('../../my_base/projects/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addProjectCallback&exclude='+excludes, 'AddProjects', 1050, 700); 370 370 } 371 371 function addProjectCallback(projectId, name) … … 382 382 var ids = Link.getListIds(document.forms['share'].members, 'T'); 383 383 var excludes = ids.join(','); 384 Main.openPopup('../../views/permissiontemplates/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addPermissionTemplateCallback&permission=READ&exclude='+excludes, 'AddPermissionTemplates', 10 00, 700);384 Main.openPopup('../../views/permissiontemplates/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addPermissionTemplateCallback&permission=READ&exclude='+excludes, 'AddPermissionTemplates', 1050, 700); 385 385 } 386 386 function addPermissionTemplateCallback(templateId, name) -
trunk/www/filemanager/files/edit_file.jsp
r5946 r5949 187 187 url += '&item_id='+id; 188 188 } 189 Main.openPopup(url, 'SelectFileServer', 10 00, 700);189 Main.openPopup(url, 'SelectFileServer', 1050, 700); 190 190 } 191 191 function setFileServerCallback(id, name) … … 219 219 var frm = document.forms['file']; 220 220 var url = '../../admin/mimetypes/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectone&callback=setMimeTypeCallback'; 221 Main.openPopup(url, 'SelectMimeType', 10 00, 700);221 Main.openPopup(url, 'SelectMimeType', 1050, 700); 222 222 } 223 223 function setMimeTypeCallback(id, name) -
trunk/www/filemanager/files/edit_multiple_file.jsp
r5908 r5949 111 111 var frm = document.forms['file']; 112 112 var url = '../../admin/mimetypes/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectone&callback=setMimeTypeCallback'; 113 Main.openPopup(url, 'SelectMimeType', 10 00, 700);113 Main.openPopup(url, 'SelectMimeType', 1050, 700); 114 114 } 115 115 function setMimeTypeCallback(id, name) -
trunk/www/impersonate.jsp
r5915 r5949 77 77 url += '&item_id='+id; 78 78 } 79 Main.openPopup(url, 'SelectUser', 10 00, 700);79 Main.openPopup(url, 'SelectUser', 1050, 700); 80 80 } 81 81 function setUserCallback(id, name) -
trunk/www/lims/arraybatches/edit_batch.jsp
r5946 r5949 274 274 url += '&item_id='+id; 275 275 } 276 Main.openPopup(url, 'SelectArrayDesign', 10 00, 700);276 Main.openPopup(url, 'SelectArrayDesign', 1050, 700); 277 277 } 278 278 function setArrayDesignCallback(id, name) … … 300 300 } 301 301 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype=<%=SystemItems.getId(Protocol.PRINTING)%>'; 302 Main.openPopup(url, 'SelectProtocol', 10 00, 700);302 Main.openPopup(url, 'SelectProtocol', 1050, 700); 303 303 } 304 304 function setProtocolCallback(id, name) … … 330 330 } 331 331 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype=<%=SystemItems.getId(Hardware.PRINT_ROBOT)%>'; 332 Main.openPopup(url, 'SelectPrintRobot', 10 00, 700);332 Main.openPopup(url, 'SelectPrintRobot', 1050, 700); 333 333 } 334 334 function setPrintRobotCallback(id, name) -
trunk/www/lims/arraydesigns/manage_plates.jsp
r5917 r5949 102 102 var url = '../plates/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addPlateCallback'; 103 103 url += '&excludes='+excludes; 104 Main.openPopup(url, 'AddPlates', 10 00, 700);104 Main.openPopup(url, 'AddPlates', 1050, 700); 105 105 } 106 106 -
trunk/www/lims/arrayslides/create_wizard.jsp
r5946 r5949 178 178 var url = '../../lims/arraybatches/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectone&callback=setArrayBatchCallback'; 179 179 if (frm.arraybatch_id.length > 0) url += '&item_id='+frm.arraybatch_id[0].value; 180 Main.openPopup(url, 'SelectArrayBatch', 10 00, 700);180 Main.openPopup(url, 'SelectArrayBatch', 1050, 700); 181 181 } 182 182 function setArrayBatchCallback(id, name) -
trunk/www/lims/arrayslides/edit_slide.jsp
r5946 r5949 200 200 var url = '../../lims/arraybatches/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectone&callback=setArrayBatchCallback'; 201 201 if (frm.arraybatch_id.length > 0) url += '&item_id='+frm.arraybatch_id[0].value; 202 Main.openPopup(url, 'SelectArrayBatch', 10 00, 700);202 Main.openPopup(url, 'SelectArrayBatch', 1050, 700); 203 203 } 204 204 function setArrayBatchCallback(id, name) -
trunk/www/lims/plates/edit_plate.jsp
r5946 r5949 181 181 var url = '../platetypes/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectone&callback=setPlateTypeCallback'; 182 182 if (frm.platetype_id.length > 0) url += '&item_id='+frm.platetype_id[0].value; 183 Main.openPopup(url, 'SelectArrayBatch', 10 00, 700);183 Main.openPopup(url, 'SelectArrayBatch', 1050, 700); 184 184 } 185 185 function setPlateTypeCallback(plateTypeId, name) -
trunk/www/lims/plates/events/edit_event.jsp
r5946 r5949 203 203 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype='+protocolTypeFilter; 204 204 } 205 Main.openPopup(url, 'SelectProtocol', 10 00, 700);205 Main.openPopup(url, 'SelectProtocol', 1050, 700); 206 206 } 207 207 function setProtocolCallback(id, name) … … 226 226 url += '&item_id='+id; 227 227 } 228 Main.openPopup(url, 'SelectHardware', 10 00, 700);228 Main.openPopup(url, 'SelectHardware', 1050, 700); 229 229 } 230 230 function setHardwareCallback(id, name) -
trunk/www/lims/plates/merge_plates.jsp
r5946 r5949 100 100 var frm = document.forms['merge']; 101 101 var url = '../platemappings/index.jsp?ID=<%=ID%>&mode=selectone&callback=setPlateMappingCallback'; 102 Main.openPopup(url, 'SelectPlateMapping', 10 00, 700);102 Main.openPopup(url, 'SelectPlateMapping', 1050, 700); 103 103 } 104 104 function setPlateMappingCallback(id, name) … … 119 119 var frm = document.forms['merge']; 120 120 var url = '../platetypes/index.jsp?ID=<%=ID%>&mode=selectone&callback=setPlateTypeCallback'; 121 Main.openPopup(url, 'SelectPlateType', 10 00, 700);121 Main.openPopup(url, 'SelectPlateType', 1050, 700); 122 122 } 123 123 function setPlateTypeCallback(id, name) -
trunk/www/lims/plates/merge_plates_2.jsp
r5946 r5949 106 106 url += "&exclude="+excludes; 107 107 url += '&resetTemporary=1&tmpfilter:INT:plateType.plateGeometry=<%=sourceGeometry.getId()%>'; 108 Main.openPopup(url, 'AddPlates', 10 00, 700);108 Main.openPopup(url, 'AddPlates', 1050, 700); 109 109 } 110 110 -
trunk/www/lims/platetypes/eventtypes/edit_eventtype.jsp
r5946 r5949 157 157 url += '&item_id='+id; 158 158 } 159 Main.openPopup(url, 'SelectProtocolType', 10 00, 700);159 Main.openPopup(url, 'SelectProtocolType', 1050, 700); 160 160 } 161 161 function setProtocolTypeCallback(id, name) -
trunk/www/my_base/projects/edit_project.jsp
r5946 r5949 373 373 url += '&item_id='+id; 374 374 } 375 Main.openPopup(url, 'SelectPermissionTemplate', 10 00, 700);375 Main.openPopup(url, 'SelectPermissionTemplate', 1050, 700); 376 376 } 377 377 function setPermissionTemplateCallback(id, name) … … 417 417 var ids = Link.getListIds(document.forms['project'].members, 'U'); 418 418 var excludes = ids.join(','); 419 Main.openPopup('../../admin/users/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addUserCallback&permission=READ&exclude='+excludes, 'AddUsers', 10 00, 700);419 Main.openPopup('../../admin/users/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addUserCallback&permission=READ&exclude='+excludes, 'AddUsers', 1050, 700); 420 420 } 421 421 function addUserCallback(userId, name) … … 439 439 %> 440 440 var excludes = ids.join(','); 441 Main.openPopup('../../admin/groups/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addGroupCallback&permission=READ&exclude='+excludes, 'AddGroups', 10 00, 700);441 Main.openPopup('../../admin/groups/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addGroupCallback&permission=READ&exclude='+excludes, 'AddGroups', 1050, 700); 442 442 } 443 443 function addGroupCallback(groupId, name) … … 459 459 var ids = Link.getListIds(document.forms['project'].defaultItems, 'PROTOCOL'); 460 460 var excludes = ids.join(','); 461 Main.openPopup('../../admin/protocols/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultProtocolCallback&exclude='+excludes, 'AddProtocols', 10 00, 700);461 Main.openPopup('../../admin/protocols/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultProtocolCallback&exclude='+excludes, 'AddProtocols', 1050, 700); 462 462 } 463 463 function addDefaultProtocolCallback(protocolId, name) … … 477 477 var ids = Link.getListIds(document.forms['project'].defaultItems, 'SOFTWARE'); 478 478 var excludes = ids.join(','); 479 Main.openPopup('../../admin/software/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultSoftwareCallback&exclude='+excludes, 'AddSoftware', 10 00, 700);479 Main.openPopup('../../admin/software/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultSoftwareCallback&exclude='+excludes, 'AddSoftware', 1050, 700); 480 480 } 481 481 function addDefaultSoftwareCallback(softwareId, name) … … 495 495 var ids = Link.getListIds(document.forms['project'].defaultItems, 'HARDWARE'); 496 496 var excludes = ids.join(','); 497 Main.openPopup('../../admin/hardware/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultHardwareCallback&exclude='+excludes, 'AddHardware', 10 00, 700);497 Main.openPopup('../../admin/hardware/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultHardwareCallback&exclude='+excludes, 'AddHardware', 1050, 700); 498 498 } 499 499 function addDefaultHardwareCallback(hardwareId, name) … … 513 513 var ids = Link.getListIds(document.forms['project'].defaultItems, 'ARRAYDESIGN'); 514 514 var excludes = ids.join(','); 515 Main.openPopup('../../lims/arraydesigns/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultArrayDesignCallback&exclude='+excludes, 'AddArrayDesign', 10 00, 700);515 Main.openPopup('../../lims/arraydesigns/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultArrayDesignCallback&exclude='+excludes, 'AddArrayDesign', 1050, 700); 516 516 } 517 517 function addDefaultArrayDesignCallback(designId, name) … … 529 529 var ids = Link.getListIds(document.forms['project'].defaultItems, 'PLATFORM'); 530 530 var excludes = ids.join(','); 531 Main.openPopup('../../admin/platforms/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultPlatformCallback&exclude='+excludes, 'AddPlatform', 10 00, 700);531 Main.openPopup('../../admin/platforms/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addDefaultPlatformCallback&exclude='+excludes, 'AddPlatform', 1050, 700); 532 532 } 533 533 function addDefaultPlatformCallback(platformId, name) … … 548 548 var ids = Link.getListIds(frm.defaultItems, 'PLATFORMVARIANT'); 549 549 url += '&exclude='+ids.join(','); 550 Main.openPopup(url, 'AddPlatformVariant', 10 00, 700);550 Main.openPopup(url, 'AddPlatformVariant', 1050, 700); 551 551 } 552 552 function addDefaultPlatformVariantCallback(variantId, name) -
trunk/www/plugins/net/sf/basedb/clients/web/plugins/simple_export.jsp
r5946 r5949 252 252 url += '&fileName=' + encodeURIComponent(frm['path'].value.substring(i+1)); 253 253 } 254 Main.openPopup(url, 'SaveAs', 10 00, 700);254 Main.openPopup(url, 'SaveAs', 1050, 700); 255 255 } 256 256 function setFileCallback(path) -
trunk/www/plugins/net/sf/basedb/plugins/jep_extra_value_calculator.jsp
r5946 r5949 148 148 url += '&item_id='+id; 149 149 } 150 Main.openPopup(url, 'SelectExtraValueType', 10 00, 700);150 Main.openPopup(url, 'SelectExtraValueType', 1050, 700); 151 151 } 152 152 function setExtraValueTypeCallback(id, name) … … 241 241 var url = '../../views/experiments/bioassays/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addBioAssayCallback&bioassayset_id=<%=source.getId()%>'; 242 242 url += "&exclude="+excludes; 243 Main.openPopup(url, 'AddBioAssays', 10 00, 700);243 Main.openPopup(url, 'AddBioAssays', 1050, 700); 244 244 } 245 245 function addBioAssayCallback(bioAssayId, name) -
trunk/www/plugins/net/sf/basedb/plugins/jep_filter.jsp
r5946 r5949 246 246 var url = '../../views/experiments/bioassays/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addBioAssayCallback&bioassayset_id=<%=source.getId()%>'; 247 247 url += "&exclude="+excludes; 248 Main.openPopup(url, 'AddBioAssays', 10 00, 700);248 Main.openPopup(url, 'AddBioAssays', 1050, 700); 249 249 } 250 250 function addBioAssayCallback(bioAssayId, name) -
trunk/www/views/derivedbioassays/edit_bioassay.jsp
r5946 r5949 401 401 url += '&item_id='+id; 402 402 } 403 Main.openPopup(url, 'SelectProtocol', 10 00, 700);403 Main.openPopup(url, 'SelectProtocol', 1050, 700); 404 404 } 405 405 function setProtocolCallback(id, name) … … 432 432 url += '&item_id='+id; 433 433 } 434 Main.openPopup(url, 'SelectPhysicalBioAssay', 10 00, 700);434 Main.openPopup(url, 'SelectPhysicalBioAssay', 1050, 700); 435 435 } 436 436 function setPhysicalBioAssayCallback(id, name) … … 464 464 url += '&item_id='+id; 465 465 } 466 Main.openPopup(url, 'SelectParentBioAssay', 10 00, 700);466 Main.openPopup(url, 'SelectParentBioAssay', 1050, 700); 467 467 } 468 468 function setParentBioAssayCallback(id, name) … … 496 496 url += '&item_id='+id; 497 497 } 498 Main.openPopup(url, 'SelectHardware', 10 00, 700);498 Main.openPopup(url, 'SelectHardware', 1050, 700); 499 499 } 500 500 function setHardwareCallback(id, name) … … 521 521 url += '&item_id='+id; 522 522 } 523 Main.openPopup(url, 'SelectSoftware', 10 00, 700);523 Main.openPopup(url, 'SelectSoftware', 1050, 700); 524 524 } 525 525 function setSoftwareCallback(id, name) -
trunk/www/views/experiments/bioassays/list_bioassays.jsp
r5948 r5949 193 193 function openPlotTool(bioAssayId) 194 194 { 195 Main.openPopup('../plotter/index.jsp?ID=<%=ID%>&bioassay_id='+bioAssayId, 'Plotter', 10 00, 700);195 Main.openPopup('../plotter/index.jsp?ID=<%=ID%>&bioassay_id='+bioAssayId, 'Plotter', 1050, 700); 196 196 } 197 197 function viewSpotData(bioAssayId) -
trunk/www/views/experiments/clone_reporters.jsp
r5923 r5949 118 118 url += '&item_id='+id; 119 119 } 120 Main.openPopup(url, 'SelectReporterCloneTemplate', 10 00, 700);120 Main.openPopup(url, 'SelectReporterCloneTemplate', 1050, 700); 121 121 } 122 122 function setTemplateCallback(id, name) -
trunk/www/views/experiments/edit_experiment.jsp
r5946 r5949 207 207 url += "&exclude="+excludes; 208 208 url += '&resetTemporary=1&tmpfilter:STRING:rawDataType='+rawDataType; 209 Main.openPopup(url, 'AddRawBioAssays', 10 00, 700);209 Main.openPopup(url, 'AddRawBioAssays', 1050, 700); 210 210 } 211 211 function addRawBioAssayCallback(rawBioAssayId, name) … … 227 227 var url = '../../admin/annotationtypes/index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addAnnotationTypeCallback'; 228 228 url += "&exclude="+excludes; 229 Main.openPopup(url, 'AddAnnotationTypes', 10 00, 700);229 Main.openPopup(url, 'AddAnnotationTypes', 1050, 700); 230 230 } 231 231 function addAnnotationTypeCallback(annotationTypeId, name) -
trunk/www/views/experiments/explorer/search/list.jsp
r5945 r5949 243 243 /> 244 244 </tbl:toolbar> 245 <tbl:presetselector 246 clazz="columnheader" 247 onchange="presetOnChange()" 248 /> 245 249 <tbl:navigator 246 250 page="<%=cc.getPage()%>" … … 249 253 /> 250 254 <tbl:data> 251 <tbl:columns> 252 <tbl:presetselector 253 clazz="columnheader" 254 colspan="1" 255 onchange="presetOnChange()" 256 /> 257 </tbl:columns> 258 <tr> 259 <tbl:header 260 clazz="icons" 261 > </tbl:header> 262 <tbl:propertyfilter /> 263 </tr> 255 <tbl:headers> 256 <tbl:headerrow> 257 <tbl:header clazz="icons"/> 258 <tbl:columnheaders /> 259 </tbl:headerrow> 260 <tbl:headerrow> 261 <tbl:header clazz="icons"/> 262 <tbl:propertyfilter /> 263 </tbl:headerrow> 264 </tbl:headers> 264 265 <tbl:rows> 265 266 266 <% 267 267 int rowIndex = cc.getPage()*cc.getRowsPerPage(); -
trunk/www/views/experiments/plotter/save_as.jsp
r5924 r5949 61 61 function browseOnClick() 62 62 { 63 Main.openPopup(getRoot()+'filemanager/save_as.jsp?ID=<%=ID%>&callback=setFileCallback', 'SaveAs', 10 00, 700);63 Main.openPopup(getRoot()+'filemanager/save_as.jsp?ID=<%=ID%>&callback=setFileCallback', 'SaveAs', 1050, 700); 64 64 } 65 65 function setFileCallback(path) -
trunk/www/views/experiments/reporters/list_reporters.jsp
r5946 r5949 313 313 /> 314 314 </tbl:toolbar> 315 <tbl:presetselector 316 clazz="columnheader" 317 onchange="presetOnChange()" 318 /> 315 319 <tbl:navigator 316 320 page="<%=cc.getPage()%>" … … 320 324 /> 321 325 <tbl:data> 322 <tbl:columns> 323 <tbl:presetselector 324 clazz="columnheader" 325 colspan="2" 326 onchange="presetOnChange()" 327 /> 328 </tbl:columns> 329 <tr> 330 <tbl:header 331 clazz="index" 332 > </tbl:header> 333 <tbl:header 334 clazz="icons" 335 visible="<%=mode.hasIcons()%>" 336 > </tbl:header> 337 <tbl:propertyfilter /> 338 </tr> 339 340 <tbl:rows> 326 <tbl:headers> 327 <tbl:headerrow> 328 <tbl:header 329 clazz="index" 330 colspan="2" 331 /> 332 <tbl:columnheaders /> 333 </tbl:headerrow> 334 <tbl:headerrow> 335 <tbl:header 336 clazz="index" 337 colspan="2" 338 /> 339 <tbl:propertyfilter /> 340 </tbl:headerrow> 341 </tbl:headers> 342 <tbl:rows> 341 343 <% 342 344 int index = cc.getPage()*cc.getRowsPerPage(); -
trunk/www/views/experiments/spotdata/list_spotdata.jsp
r5946 r5949 349 349 wrapper="<%=new PrefixSuffixRenderer(jspContext, "<td>", "</td>") %>"/> 350 350 </tbl:toolbar> 351 <tbl:presetselector 352 clazz="columnheader" 353 onchange="presetOnChange()" 354 /> 351 355 <tbl:navigator 352 356 page="<%=cc.getPage()%>" … … 356 360 /> 357 361 <tbl:data> 358 <tbl:columns> 359 <tbl:presetselector 360 clazz="columnheader" 361 colspan="2" 362 onchange="presetOnChange()" 363 /> 364 </tbl:columns> 365 <tr> 366 <tbl:header 367 clazz="index" 368 > </tbl:header> 369 <tbl:header 370 clazz="icons" 371 visible="<%=mode.hasIcons()%>" 372 > </tbl:header> 373 <tbl:propertyfilter /> 374 </tr> 375 376 <tbl:rows> 362 <tbl:headers> 363 <tbl:headerrow> 364 <tbl:header 365 clazz="index" 366 colspan="2" 367 /> 368 <tbl:columnheaders /> 369 </tbl:headerrow> 370 <tbl:headerrow> 371 <tbl:header 372 clazz="index" 373 colspan="2" 374 /> 375 <tbl:propertyfilter /> 376 </tbl:headerrow> 377 </tbl:headers> 378 <tbl:rows> 377 379 <% 378 380 int index = cc.getPage()*cc.getRowsPerPage(); -
trunk/www/views/physicalbioassays/edit_bioassay.jsp
r5946 r5949 368 368 url += '&item_id='+id; 369 369 } 370 Main.openPopup(url, 'SelectProtocol', 10 00, 700);370 Main.openPopup(url, 'SelectProtocol', 1050, 700); 371 371 } 372 372 function setProtocolCallback(id, name) … … 399 399 url += '&item_id='+id; 400 400 } 401 Main.openPopup(url, 'SelectHardware', 10 00, 700);401 Main.openPopup(url, 'SelectHardware', 1050, 700); 402 402 } 403 403 function setHardwareCallback(id, name) … … 433 433 url += '&resetTemporary=1&tmpfilter:STRING:physicalBioAssay.name=='; 434 434 url += '&tmpfilter:BOOLEAN:destroyed=false'; 435 Main.openPopup(url, 'SelectArraySlide', 10 00, 700);435 Main.openPopup(url, 'SelectArraySlide', 1050, 700); 436 436 } 437 437 function setArraySlideCallback(arraySlideId, name) … … 486 486 url += ItemSubtype.createRelatedFilter('bioassay', 'EXTRACT'); 487 487 url += '&exclude='+excludes; 488 Main.openPopup(url, 'AddExtracts', 10 00, 700);488 Main.openPopup(url, 'AddExtracts', 1050, 700); 489 489 } 490 490 function addExtractCallback(extractId, name) -
trunk/www/views/rawbioassays/edit_rawbioassay.jsp
r5946 r5949 476 476 } 477 477 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype=<%=SystemItems.getId(Protocol.FEATURE_EXTRACTION)%>'; 478 Main.openPopup(url, 'SelectProtocol', 10 00, 700);478 Main.openPopup(url, 'SelectProtocol', 1050, 700); 479 479 } 480 480 function setProtocolCallback(id, name) … … 515 515 url += '&item_id='+id; 516 516 } 517 Main.openPopup(url, 'SelectDerivedBioAssay', 10 00, 700);517 Main.openPopup(url, 'SelectDerivedBioAssay', 1050, 700); 518 518 } 519 519 function setBioAssayCallback(id, name) … … 544 544 url += '&item_id='+id; 545 545 } 546 Main.openPopup(url, 'SelectExtract', 10 00, 700);546 Main.openPopup(url, 'SelectExtract', 1050, 700); 547 547 } 548 548 function setExtractCallback(id, name) … … 570 570 } 571 571 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype=<%=SystemItems.getId(Software.FEATURE_EXTRACTION)%>'; 572 Main.openPopup(url, 'SelectSoftware', 10 00, 700);572 Main.openPopup(url, 'SelectSoftware', 1050, 700); 573 573 } 574 574 function setSoftwareCallback(id, name) … … 618 618 var platform = Platforms.getSelectedPlatform(frm.platform); 619 619 url += '&resetTemporary=1&tmpfilter:INT:platform='+platform.id; 620 Main.openPopup(url, 'SelectArrayDesign', 10 00, 700);620 Main.openPopup(url, 'SelectArrayDesign', 1050, 700); 621 621 } 622 622 function setArrayDesignCallback(id, name) -
trunk/www/views/rawbioassays/edit_spotimages.jsp
r5946 r5949 124 124 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype=<%=SystemItems.getId(File.IMAGE)%>'; 125 125 if (frm.redfile_id.length > 1) url += '&item_id='+frm.redfile_id[1].value; 126 Main.openPopup(url, 'SelectRedFile', 10 00, 700);126 Main.openPopup(url, 'SelectRedFile', 1050, 700); 127 127 } 128 128 function setRedFileCallback(fileId, name) … … 144 144 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype=<%=SystemItems.getId(File.IMAGE)%>'; 145 145 if (frm.greenfile_id.length > 1) url += '&item_id='+frm.greenfile_id[1].value; 146 Main.openPopup(url, 'SelectGreenFile', 10 00, 700);146 Main.openPopup(url, 'SelectGreenFile', 1050, 700); 147 147 } 148 148 function setGreenFileCallback(fileId, name) … … 164 164 url += '&resetTemporary=1&tmpfilter:INT:itemSubtype=<%=SystemItems.getId(File.IMAGE)%>'; 165 165 if (frm.bluefile_id.length > 1) url += '&item_id='+frm.bluefile_id[1].value; 166 Main.openPopup(url, 'SelectBlueFile', 10 00, 700);166 Main.openPopup(url, 'SelectBlueFile', 1050, 700); 167 167 } 168 168 function setBlueFileCallback(fileId, name) … … 180 180 function browseOnClick() 181 181 { 182 Main.openPopup('../../filemanager/index.jsp?ID=<%=ID%>&cmd=SaveAs&callback=setSaveAsCallback', 'SaveAs', 10 00, 700);182 Main.openPopup('../../filemanager/index.jsp?ID=<%=ID%>&cmd=SaveAs&callback=setSaveAsCallback', 'SaveAs', 1050, 700); 183 183 } 184 184 function setSaveAsCallback(path) -
trunk/www/views/reporterlists/merge.jsp
r5916 r5949 92 92 var url = 'index.jsp?ID=<%=ID%>&cmd=UpdateContext&mode=selectmultiple&callback=addReporterListsCallback'; 93 93 url += "&exclude="+excludes; 94 Main.openPopup(url, 'AddReporterLists', 10 00, 700);94 Main.openPopup(url, 'AddReporterLists', 1050, 700); 95 95 } 96 96 function addReporterListsCallback(reporterListId, name) -
trunk/www/views/reporterlists/reporters/list_reporters.jsp
r5948 r5949 136 136 function addItems() 137 137 { 138 Main.openPopup('add_reporters_frameset.jsp?ID=<%=ID%>&reporterlist_id=<%=reporterListId%>', 'AddReporters', 10 00, 700);138 Main.openPopup('add_reporters_frameset.jsp?ID=<%=ID%>&reporterlist_id=<%=reporterListId%>', 'AddReporters', 1050, 700); 139 139 } 140 140 function deleteItems()
Note: See TracChangeset
for help on using the changeset viewer.