7604 |
25 Feb 19 |
nicklas |
/* $Id $ |
7604 |
25 Feb 19 |
nicklas |
2 |
------------------------------------------------------------------ |
7604 |
25 Feb 19 |
nicklas |
Copyright (C) 2013 Nicklas Nordborg |
7604 |
25 Feb 19 |
nicklas |
4 |
|
7604 |
25 Feb 19 |
nicklas |
This file is part of BASE - BioArray Software Environment. |
7604 |
25 Feb 19 |
nicklas |
Available at http://base.thep.lu.se/ |
7604 |
25 Feb 19 |
nicklas |
7 |
|
7604 |
25 Feb 19 |
nicklas |
BASE is free software; you can redistribute it and/or |
7604 |
25 Feb 19 |
nicklas |
modify it under the terms of the GNU General Public License |
7604 |
25 Feb 19 |
nicklas |
as published by the Free Software Foundation; either version 3 |
7604 |
25 Feb 19 |
nicklas |
of the License, or (at your option) any later version. |
7604 |
25 Feb 19 |
nicklas |
12 |
|
7604 |
25 Feb 19 |
nicklas |
BASE is distributed in the hope that it will be useful, |
7604 |
25 Feb 19 |
nicklas |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
7604 |
25 Feb 19 |
nicklas |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7604 |
25 Feb 19 |
nicklas |
GNU General Public License for more details. |
7604 |
25 Feb 19 |
nicklas |
17 |
|
7604 |
25 Feb 19 |
nicklas |
You should have received a copy of the GNU General Public License |
7604 |
25 Feb 19 |
nicklas |
along with BASE. If not, see <http://www.gnu.org/licenses/>. |
7604 |
25 Feb 19 |
nicklas |
20 |
------------------------------------------------------------------ |
7604 |
25 Feb 19 |
nicklas |
21 |
|
7604 |
25 Feb 19 |
nicklas |
@author Nicklas |
7604 |
25 Feb 19 |
nicklas |
23 |
*/ |
7604 |
25 Feb 19 |
nicklas |
'use strict'; |
7604 |
25 Feb 19 |
nicklas |
25 |
|
7604 |
25 Feb 19 |
nicklas |
var AddMembers = function() |
7604 |
25 Feb 19 |
nicklas |
27 |
{ |
7604 |
25 Feb 19 |
nicklas |
var addMembers = {}; |
7604 |
25 Feb 19 |
nicklas |
29 |
|
7604 |
25 Feb 19 |
nicklas |
30 |
/** |
7604 |
25 Feb 19 |
nicklas |
Initialize the page. |
7604 |
25 Feb 19 |
nicklas |
32 |
*/ |
7604 |
25 Feb 19 |
nicklas |
addMembers.initPage = function() |
7604 |
25 Feb 19 |
nicklas |
34 |
{ |
7604 |
25 Feb 19 |
nicklas |
Buttons.addClickHandler('btnAddSelected', addMembers.addSelected); |
7604 |
25 Feb 19 |
nicklas |
Buttons.addClickHandler('btnAddPage', addMembers.addCurrentPage); |
7604 |
25 Feb 19 |
nicklas |
Buttons.addClickHandler('btnAddAll', addMembers.addAll); |
7604 |
25 Feb 19 |
nicklas |
38 |
|
7604 |
25 Feb 19 |
nicklas |
Buttons.addClickHandler('close', App.closeWindow); |
7604 |
25 Feb 19 |
nicklas |
var memberType = Data.get('page-data', 'member-type'); |
7604 |
25 Feb 19 |
nicklas |
var controller = Items.getController(memberType); |
7604 |
25 Feb 19 |
nicklas |
if (controller) |
7604 |
25 Feb 19 |
nicklas |
43 |
{ |
7604 |
25 Feb 19 |
nicklas |
var subtypeId = Data.int('page-data', 'subtype-id'); |
7604 |
25 Feb 19 |
nicklas |
var rawDataTypeId = Data.get('page-data', 'rawdatatype-id'); |
7604 |
25 Feb 19 |
nicklas |
var url = App.getRoot() + controller.url + '?ID='+App.getSessionId(); |
7604 |
25 Feb 19 |
nicklas |
url += '&cmd=UpdateContext&mode=selectmultiplenobuttons&resetTemporary=1'; |
7604 |
25 Feb 19 |
nicklas |
if (subtypeId) |
7604 |
25 Feb 19 |
nicklas |
49 |
{ |
7604 |
25 Feb 19 |
nicklas |
url += '&tmpfilter:INT:itemSubtype='+subtypeId; |
7604 |
25 Feb 19 |
nicklas |
51 |
} |
7604 |
25 Feb 19 |
nicklas |
else if (rawDataTypeId) |
7604 |
25 Feb 19 |
nicklas |
53 |
{ |
7604 |
25 Feb 19 |
nicklas |
url += '&tmpfilter:STRING:rawDataType='+encodeURIComponent(rawDataTypeId); |
7604 |
25 Feb 19 |
nicklas |
55 |
} |
7604 |
25 Feb 19 |
nicklas |
frames['members'].location.replace(url); |
7604 |
25 Feb 19 |
nicklas |
57 |
} |
7604 |
25 Feb 19 |
nicklas |
58 |
} |
7604 |
25 Feb 19 |
nicklas |
59 |
|
7604 |
25 Feb 19 |
nicklas |
addMembers.addSelected = function(event) |
7604 |
25 Feb 19 |
nicklas |
61 |
{ |
7604 |
25 Feb 19 |
nicklas |
var tableId = top['members'].document.forms[0].name; |
7604 |
25 Feb 19 |
nicklas |
var selected = top['members'].Table.getSelected(tableId, null, 'Please select at least one item in the list'); |
7604 |
25 Feb 19 |
nicklas |
if (selected.length == 0) return; |
7604 |
25 Feb 19 |
nicklas |
65 |
|
7604 |
25 Feb 19 |
nicklas |
var frm = document.forms['addMembers']; |
7604 |
25 Feb 19 |
nicklas |
frm.which.value = 'selected'; |
7604 |
25 Feb 19 |
nicklas |
Forms.addHidden(frm, 'items', selected.join(',')); |
7604 |
25 Feb 19 |
nicklas |
frm.submit(); |
7604 |
25 Feb 19 |
nicklas |
70 |
} |
7604 |
25 Feb 19 |
nicklas |
71 |
|
7604 |
25 Feb 19 |
nicklas |
addMembers.addCurrentPage = function() |
7604 |
25 Feb 19 |
nicklas |
73 |
{ |
7604 |
25 Feb 19 |
nicklas |
var frm = document.forms['addMembers']; |
7604 |
25 Feb 19 |
nicklas |
frm.which.value = 'page'; |
7604 |
25 Feb 19 |
nicklas |
frm.submit(); |
7604 |
25 Feb 19 |
nicklas |
77 |
} |
7604 |
25 Feb 19 |
nicklas |
78 |
|
7604 |
25 Feb 19 |
nicklas |
addMembers.addAll = function() |
7604 |
25 Feb 19 |
nicklas |
80 |
{ |
7604 |
25 Feb 19 |
nicklas |
var frm = document.forms['addMembers']; |
7604 |
25 Feb 19 |
nicklas |
frm.which.value = 'all'; |
7604 |
25 Feb 19 |
nicklas |
frm.submit(); |
7604 |
25 Feb 19 |
nicklas |
84 |
} |
7604 |
25 Feb 19 |
nicklas |
85 |
|
7604 |
25 Feb 19 |
nicklas |
86 |
|
7604 |
25 Feb 19 |
nicklas |
return addMembers; |
7604 |
25 Feb 19 |
nicklas |
88 |
}(); |
7604 |
25 Feb 19 |
nicklas |
89 |
|
7604 |
25 Feb 19 |
nicklas |
Doc.onLoad(AddMembers.initPage); |