keep result set in report or result view for later access
This commit is contained in:
parent
7761d74108
commit
edf00a3597
1 changed files with 3 additions and 1 deletions
|
@ -178,7 +178,9 @@ class ResultsConceptView(ConceptView):
|
||||||
return ri
|
return ri
|
||||||
|
|
||||||
def results(self):
|
def results(self):
|
||||||
return self.reportInstance.getResults()
|
res = self.reportInstance.getResults()
|
||||||
|
self.resultSets[res.context.name] = res
|
||||||
|
return res
|
||||||
|
|
||||||
@Lazy
|
@Lazy
|
||||||
def displayedColumns(self):
|
def displayedColumns(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue