Skip to content

Commit ae665fb

Browse files
authored
Merge pull request #70 from LabKey/fb_merge_discvr-20.11
Merge discvr-20.11 to develop
2 parents e088df3 + ca64861 commit ae665fb

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

LDK/resources/web/LDK/field/SimpleCombo.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,14 @@ Ext4.define('LDK.form.field.SimpleCombo', {
2525
});
2626

2727
this.callParent(arguments);
28+
29+
if (this.initialValues) {
30+
if (!Ext4.isArray(this.initialValues)) {
31+
this.initialValues = this.initialValues.split(';');
32+
}
33+
34+
this.setValue(this.initialValues);
35+
}
2836
},
2937

3038
parseStoreValues: function(){
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<ft:folderType xmlns:ft="http://labkey.org/data/xml/folderType">
2+
<ft:name>File Sharing</ft:name>
3+
<ft:description>This folder type is designed for simple file sharing. It just has a files webpart</ft:description>
4+
<ft:folderTabs>
5+
<ft:folderTab>
6+
<ft:name>overview</ft:name>
7+
<ft:caption>Overview</ft:caption>
8+
<ft:selectors>
9+
</ft:selectors>
10+
<ft:requiredWebParts>
11+
</ft:requiredWebParts>
12+
<ft:preferredWebParts>
13+
<ft:webPart>
14+
<ft:name>Files</ft:name>
15+
<ft:location>body</ft:location>
16+
</ft:webPart>
17+
</ft:preferredWebParts>
18+
</ft:folderTab>
19+
</ft:folderTabs>
20+
<ft:modules>
21+
<ft:moduleName>Laboratory</ft:moduleName>
22+
</ft:modules>
23+
<ft:defaultModule>Laboratory</ft:defaultModule>
24+
</ft:folderType>

laboratory/resources/web/laboratory/window/WorkbookCreationWindow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Ext4.define('Laboratory.panel.WorkbookCreationPanel', {
126126
var urlParams = this.urlParams || {};
127127

128128
var url = LABKEY.ActionURL.buildURL(controller, action, containerPath, urlParams);
129-
if (url.length > 1200){
129+
if (url.length > 1000){
130130
Ext4.create('Ext.form.Panel', {
131131
url: LABKEY.ActionURL.buildURL(controller, action, containerPath),
132132
method: 'POST',

0 commit comments

Comments
 (0)