View Single Post
06/20/17, 10:43 AM   #10
Lum1on
AddOn Author - Click to view addons
Join Date: Aug 2016
Posts: 18
Originally Posted by sirinsidiator View Post
ZO_ScrollList is not a wholesome library and ZOS is not a charity. It is merely a tool made for a specific usecase by a company trying to make the most out of their time. It doesn't do anything besides that. If you need extra features, you will need to implement them yourself. That's how it is with almost anything related to ESO addons.

Do you mean the starting position of the scroll list?
If so, you could use
Lua Code:
  1. ZO_Scroll_ScrollAbsoluteInstantly(myScrollList, 100)
to set it to the very bottom.
Yeah I know it's not a charity. And I do appreciate the work they have and will do.

That ZO_Scroll_ScrollAbsoluteInstantly function, though. I mean that usually ZO_ScrollList works the way that new elements are pushed above the older ones. Like this:
  • New element
  • Excisting element 01
  • Excisting element 02
  • Excisting element 03
  • .
  • (Empty space)
  • .

But how I would like to make it is like this:
  • .
  • (Empty space)
  • .
  • Excisting element 03
  • Excisting element 02
  • Excisting element 01
  • New element
  Reply With Quote