-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 3.13.1
-
Component/s: Page Providers, Studio Designer
-
Tags:
-
Backlog priority:700
-
Sprint:NOS 11.1.14 - 2019-07 3
-
Story Points:2
The _navigate function added to pageprovider result layouts is incorrect
Step to reproduce in studio:
- create a pageprovider with a fulltext predicate
- in designer, generate the result layout
VD generates the following _navigate function:
_navigate: function(e) { this.fire('navigate', {doc: (e.model || e.detail).item}); }
but should be
_navigate: function(e) { this.fire('navigate', { doc: (e.model || e.detail).item, index: (e.model || e.detail).index }); }
This results in the drawer list not going automatically to the selected item
- is caused by
-
NXP-23205 Fix the highlight of current document in the search queue
- Resolved