I have a simple data grid that is tracking messages, when a message comes in addItem() adds it to the bottom of the list. What I need is more of a stack so that messages are added to the top.
Is there a collection that behaves as a stack or do I need to emulate this by somehow adding new items to the top of the collection? Thanks, Mike

