-
Notifications
You must be signed in to change notification settings - Fork 511
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
Expand parent nodes of selected item. Scroll menu to selected item. #310
Open
varlamov88
wants to merge
3
commits into
riophae:master
Choose a base branch
from
varlamov88:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Expand parents in search mode then chidren is selected
Is there anything new about this feature and a possible release date? |
nice PR!!! Thank you for the fix @varlamov88! I tested this.expandParentNodes() should be in openMenu() like the follow:
|
emacle
added a commit
to emacle/vue-treeselect
that referenced
this pull request
Jul 3, 2020
@varlamov88 [Expand parent nodes of selected item. Scroll menu to selected item](riophae#310) 使用选项: scrollPositionOnCenter = true ``` <treeselect v-model="orgCode" :clearable="true" :scrollPositionOnCenter="true" :default-expand-level="0" /> ```
emacle
added a commit
to emacle/vue-treeselect
that referenced
this pull request
Jul 3, 2020
@varlamov88 [Expand parent nodes of selected item. Scroll menu to selected item](riophae#310) 使用选项: scrollPositionOnCenter = true ``` <treeselect v-model="orgCode" :clearable="true" :scrollPositionOnCenter="true" :default-expand-level="0" /> ```
emacle
added a commit
to emacle/vue-treeselect
that referenced
this pull request
Jul 12, 2020
@varlamov88 [Expand parent nodes of selected item. Scroll menu to selected item](riophae#310) 使用选项: scrollPositionOnCenter = true ``` <treeselect v-model="orgCode" :clearable="true" :scrollPositionOnCenter="true" :default-expand-level="0" /> ```
emacle
added a commit
to emacle/vue-treeselect
that referenced
this pull request
Jul 12, 2020
@varlamov88 [Expand parent nodes of selected item. Scroll menu to selected item](riophae#310) 使用选项: scrollPositionOnCenter = true ``` <treeselect v-model="orgCode" :clearable="true" :scrollPositionOnCenter="true" :default-expand-level="0" /> ```
Have any question on this PR? I also have this question need this PR, so whether consider to merge this right now if have no question else? |
almas
added a commit
to dusal/vue-treeselect
that referenced
this pull request
Aug 8, 2021
Scroll menu to selected item, by center. Pull request by varlamov88.
any news about merge this pr ? |
emacle
added a commit
to emacle/vue-treeselect
that referenced
this pull request
Jan 18, 2023
@varlamov88 [Expand parent nodes of selected item. Scroll menu to selected item](riophae#310) 使用选项: scrollPositionOnCenter = true ``` <treeselect v-model="orgCode" :clearable="true" :scrollPositionOnCenter="true" :default-expand-level="0" /> ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
If i have multilevel tree and v-model has an initial value (for example, from db), that lies deep on the tree, i cant see selected value, when open "treeselect". defaultExpandLevel open all nodes, its not suitable.
lastScrollPosition doesnt work, when i open page first time. It has srollTop = 0. And i want open menu with selected item located in the center, not with "saveMenuScrollPosition" from the last time.
Second commit is about expand parents in search mode then children id selected.
I have this state (on screenshot). Then I input "AB" to the search area, tree expanded and I select "AB" item, then tree is collapsed and selected item is not visible. P.S. I dont need expand all levels by default.