lib-st provides a convenient way to create and display a scrolling table of data.
Supply column info and your table data, and you're off!
To get a handle in lua:
local ScrollingTable = LibStub("ScrollingTable");
To package in your addon, add to your .pkgmeta file:
externals: Libs/lib-st: url: svn://svn.wowace.com/wow/lib-st/mainline/trunk tag: latest
Leave off the tag line if you want the absolute lastest alpha version from the site. (I try to keep a stable copy tagged as latest)
New Features:
Added support for calling SetData with a minimal dataset which can drastically reduce the number of tables that exist within the mod... at a slight cost to customization.
Other recent changes
If no args or colorargs are specified for value and color functions, respectively, instead of no args, these args will be passed:
function (data, cols, realrow, column, sttable) -- sttable is a reference to the scrolling table end
Here's some nitty-gritty:
- Set names and widths of columns, lib-st will set the table width on it's own!
- Set the number of rows, and a value to use for row height, lib-st will set the table height on it's own!
- Set background colors for each column.
- Set column text alignment.
- Set column text color.
- Set row text color.
- Set text color on a cell-by-cell basis.
- Supply functions to be evaluated for cell data, and cell/row/column text colors!
- Filter table data via a filter funtion.
- Table sorts are NON-DESTRUCTIVE. Data or the order of data supplied is never changed (unless modified by user supplied functions) for the display of the table. No copies of the data are made either. 1 Table, your data, sort it, index it as it was when it was created, update it as you see fit.
- Hookable ui events. find out more here
- Custom cell formatting with a custom display function
- Enable selection on your scrolling table
Find out how to create a scrolling table using lib-st!
Let me know if you use it!!
-> Screenshots
Facts
- Date created
- Oct 14, 2008
- Categories
- Last update
- Jun 06, 2011
- Development stage
- Mature
- License
- GNU General Public License version 2 (GPLv2)
- Curse link
- lib-ScrollingTable
- Reverse relationships
- 14
- Downloads
- 9,500
- Recent files
Authors
Relationships
- Embedded library
- LibStub
- Reply
- #41
ddumont Jun 04, 2011 at 20:52 UTC - 0 likesSorry, the lib does not support categories.
If you submit a patch though i'll probably take it.
- Reply
- #40
upyursh Jun 04, 2011 at 18:40 UTC - 0 likesIs there are way to build heirachy into the table, so for example;
Then clicking on Cat 2 would then show
I'd like the Cat rows to be colored differently so they are clearly "Categories"
Upy
- Reply
- #39
sapu94 Jun 03, 2011 at 03:40 UTC - 0 likesI am overriding the display functions as you suggested. Working well. Thanks again.
Lead Developer and Director of TradeSkillMaster | @Sapu94 on Twitter
"A good programmer is someone who always looks both ways before crossing a one-way street." Doug Linder
- Reply
- #38
ddumont Jun 01, 2011 at 12:22 UTC - 0 likesThe easiest way would be to embed the image refs in the string contents of the cell.
The best way would probably be to override the custom display function., you get way more control over how the image is displayed( padding, alignment, etc)
In sdkp there's a slideout panel that has a list of loot that's been assigned for the dkp run. In the table data, I just put the item id string. The column has a display function that reads that in and sets the contents to an image.
- Reply
- #37
sapu94 Jun 01, 2011 at 05:36 UTC - 0 likesWhat would be the best way of having one row of a table be filled with item icons? Would I just need to have custom display functions for the cells and just do all the icon stuff myself on the cell frame?
- Reply
- #36
sapu94 May 30, 2011 at 18:01 UTC - 0 likesLove the library. I have a ton of scroll frames in TradeSkillMaster and am slowly converting them all over to use this library as it's much easier to code and tweak and most importantly looks better :)
Thanks
- Reply
- #35
AcidWeb Jan 13, 2011 at 15:24 UTC - 0 likesI don't use SVN. I will include information about used libs in description in next update.
- Reply
- #34
ddumont Jan 13, 2011 at 12:42 UTC - 0 likesNo problem. Can you link to it properly in your addon's .pkgmeta file so that I get credits for you using my lib?
- Reply
- #33
AcidWeb Jan 13, 2011 at 10:25 UTC - 0 likesThank you very much for this lib. I'm using it in my own addon - REFlex - Battleground Historian.
- Reply
- #32
talryn1 Sep 29, 2010 at 21:49 UTC - 0 likesI like the library. I was wondering if you had thought about adding an option to control whether mouseover highlighting is enabled. If you change the highlight color, it also will stop actual row selection from highlighting.
I was able to turn off the row mouseover highlighting by calling RegisterEvent and replace the OnEnter and OnLeave but it seems like it would be nice to just have an option. It's possible in the future that those events could be use internally for other purposes.