-
Notifications
You must be signed in to change notification settings - Fork 24
v2-table scroll issue #11
Comments
Which version do you use? And can show me a case or more code? @marcelobcortes |
Hello! teste-fullstack/resources/assets/js/components/alunos.vue (if you can I would love to receive feedback about the whole project code) |
@marcelobcortes I have seen your code and I want to know how to switch to other modal ? |
click in a entry in "alunos" sections. let me know if I still wasnt clear enough |
@marcelobcortes I have reproduced it. And I will fix it as soon as possible. Thanks for your feedback. |
<v2-table v-if="cursos.length>0" height=132 :data="cursos" ref="table">
<v2-table-column width=20 label="#" prop="sequence"></v2-table-column>
<v2-table-column label="Curso" prop="nome"></v2-table-column>
<v2-table-column label="Data de matrícula" prop="datamatricula"></v2-table-column>
<v2-table-column label="Data de conclusão" prop="dataconclusao"></v2-table-column>
<v2-table-column label="Nota" prop="nota"></v2-table-column>
</v2-table> When this.cursos = new-cursos-data
this.$refs.table.updateScrollbar(true); @marcelobcortes You need to upgrade v2-table to v3.0.1. Hope it helps you. |
@dwqs I think put the update scroll function in v2-table component rather than exposed outside because sometimes the table DOM's render doesn't finish, but I have invoked the update scroll function.
|
Hi there!
I'm facing a problem with table's scroll.
The mentioned table is inside a b-modal (bootstrap vue)
I'm using a fixed height enough to display 3 rows
If I scroll all it down to see the 5#,6#,7# row and then switch to other modal containing <= 3 rows
these 3 rows arent displayed. But i can scroll up back and see those rows
https://hastebin.com/zamuxovowo.xml
The text was updated successfully, but these errors were encountered: