-
Notifications
You must be signed in to change notification settings - Fork 3
Merge from onprc19.1 & onprc19.1Prod r.63271 to 65949 #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
74d287e
da1c620
25faf26
a01dd02
2ed1767
7b23975
50b0d32
6d7ff62
6b6e16f
efbb2cf
4a03e01
8b7452f
95fe82d
3472a0e
d63db3c
23c1f48
906bd4c
1179f09
2047202
99382f3
1411dc8
bcb3794
02997d2
0a2ac07
6d2a24d
e3ea9e2
1c375ec
06b7657
23308a2
4171d41
5618ca4
630a601
626f2cd
78f6cdd
7375737
1c90aac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ALTER TABLE ehr_compliancedb.CompletionDates ADD COLUMN FileName varchar(500); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ALTER TABLE ehr_compliancedb.Employees ALTER COLUMN Notes TYPE VARCHAR (4000); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ALTER TABLE ehr_compliancedb.CompletionDates ADD FileName nvarchar(500); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| ALTER TABLE ehr_compliancedb.Employees ALTER COLUMN Notes NVARCHAR (4000); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -162,8 +162,11 @@ | |
| return; | ||
| } | ||
|
|
||
| // By Kollil, 3/22/2018 : In 17.2 the filter is not working. Removed the the line 168 and added the filterArray at line 169. | ||
| // The Animal group search is working fine now after this change. | ||
| if (groupName) | ||
| config.removeableFilters = [LABKEY.Filter.create('groupId/name', groupName, LABKEY.Filter.Types.EQUAL)]; | ||
| //config.removeableFilters = [LABKEY.Filter.create('groupId/name', groupName, LABKEY.Filter.Types.EQUAL)]; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. isnt userFilters the new name for removeableFilters? this change prevents the user from removing the group name filter, doesnt it?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe that is the intention given that user enters filter criteria in a form, which then results in a filtered grid in a different panel, having removable filters on this resultant grid would be confusing.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's clear that if there was a bug preventing the filter from being applied, that's a problem. I can see the argument on there being a filter panel above, but by that same logic then shouldnt start/end date also be immutable? It is possible for the top filter fields and DR to get out of sync. This is a small enough change that it's probably not a big deal, but in general I would tend toward preserving capabilities for the user. For example, what is they want to do another filter type? More than one group? Contains? etc. |
||
| config.filterArray = [LABKEY.Filter.create('groupId/name', groupName, LABKEY.Filter.Types.EQUAL)]; | ||
|
|
||
| var params = { | ||
| StartDate: start, | ||
|
|
@@ -172,7 +175,8 @@ | |
|
|
||
| config.parameters = params; | ||
|
|
||
| LDK.Utils.getReadOnlyQWP(config).render(this.qwpDiv.id); | ||
| LDK.Utils.getReadOnlyQWP(config); | ||
|
|
||
| } | ||
|
|
||
| }); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.