Uh oh!
There was an error while loading. Please reload this page.
- 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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
74d287eda1c62025faf26a01dd022ed17677b2397550b0d326d7ff626b6e16fefbb2cf4a03e018b7452f95fe82d3472a0ed63db3c23c1f48906bd4c1179f09204720299382f31411dc8bcb379402997d20a2ac076d2a24de3ea9e21c375ec06b765723308a24171d415618ca4630a601626f2cd78f6cdd73757371c90aacFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
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 |
|---|---|---|
| @@ -62,6 +62,11 @@ | ||
| <fkDbSchema>ehr_lookups</fkDbSchema> | ||
| <fkTable>treatment_frequency</fkTable> | ||
labkey-bpatel marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| <fkColumnName>rowid</fkColumnName> | ||
| <filters> | ||
| <filterGroup> | ||
| <filter column="active" operator="eq" value="true"/> <!-- filter applied only during insert and update, will not be used during grid view --> | ||
| </filterGroup> | ||
| </filters> | ||
| </fk> | ||
| </column> | ||
| <column columnName="route"> | ||
| 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? ContributorAuthor 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.
Uh oh!
There was an error while loading. Please reload this page.