Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
28671109
Commit
28671109
authored
14 years ago
by
buczekp
Browse files
Options
Downloads
Patches
Plain Diff
[LMS-1821] fixed opening entity views in the background using links in queries
SVN: 18209
parent
5749091a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/report/ReportGrid.java
+5
-4
5 additions, 4 deletions
...c/client/web/client/application/ui/report/ReportGrid.java
with
5 additions
and
4 deletions
openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/report/ReportGrid.java
+
5
−
4
View file @
28671109
...
...
@@ -114,7 +114,7 @@ public class ReportGrid extends AbstractBrowserGrid<TableModelRow, BaseEntityMod
public
String
tryGetLink
(
TableModelRow
entity
)
{
return
null
;
return
null
;
}
// GWT only
...
...
@@ -248,7 +248,8 @@ public class ReportGrid extends AbstractBrowserGrid<TableModelRow, BaseEntityMod
{
ISerializableComparable
cellValue
=
rowItem
.
getValues
().
get
(
colIndex
);
showEntityViewer
(
entityKind
,
cellValue
.
toString
());
showEntityViewer
(
entityKind
,
cellValue
.
toString
(),
keyPressed
);
}
});
}
...
...
@@ -257,9 +258,9 @@ public class ReportGrid extends AbstractBrowserGrid<TableModelRow, BaseEntityMod
return
definitions
;
}
private
void
showEntityViewer
(
EntityKind
entityKind
,
String
permId
)
private
void
showEntityViewer
(
EntityKind
entityKind
,
String
permId
,
boolean
keyPressed
)
{
OpenEntityDetailsTabHelper
.
open
(
viewContext
,
entityKind
,
permId
,
fal
se
);
OpenEntityDetailsTabHelper
.
open
(
viewContext
,
entityKind
,
permId
,
keyPres
se
d
);
}
private
List
<
ReportColumnUI
>
createColDefinitions
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment